Localisations des neurones injectés - 31.4 [Converted].svg 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
  3. <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
  4. viewBox="0 0 612 792" style="enable-background:new 0 0 612 792;" xml:space="preserve">
  5. <style type="text/css">
  6. .st0{fill:none;stroke:#000000;stroke-width:0.3825;}
  7. .st1{fill:none;stroke:#000000;stroke-width:0.9;}
  8. .st2{fill:none;stroke:#000000;stroke-width:0.2125;}
  9. .st3{fill:none;stroke:#000000;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;}
  10. .st4{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:3.8637;}
  11. .st5{fill:none;stroke:#000000;stroke-width:0.25;}
  12. .st6{fill:none;stroke:#000000;stroke-width:0.2125;stroke-miterlimit:1;}
  13. .st7{font-family:'ArialMT';}
  14. .st8{font-size:8.9505px;}
  15. .st9{fill:none;stroke:#000000;stroke-width:0.9;stroke-miterlimit:3.8637;}
  16. .st10{fill:none;stroke:#B2B2B2;stroke-width:0.17;}
  17. .st11{fill:none;stroke:#000000;stroke-width:0.17;}
  18. .st12{font-size:10.3275px;}
  19. .st13{fill:#FFFFFF;}
  20. .st14{fill:none;stroke:#008BCB;stroke-width:0.25;stroke-miterlimit:3.8637;}
  21. .st15{font-family:'SymbolMT';}
  22. .st16{font-size:12.96px;}
  23. .st17{clip-path:url(#SVGID_2_);}
  24. .st18{fill:none;stroke:#536256;stroke-width:0.3825;}
  25. .st19{fill:none;stroke:#536256;stroke-width:0.9;}
  26. .st20{fill:none;stroke:#536256;stroke-width:0.2125;}
  27. .st21{fill:none;stroke:#536256;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;}
  28. .st22{fill:none;stroke:#536256;stroke-width:0.25;stroke-miterlimit:3.8637;}
  29. .st23{fill:none;stroke:#536256;stroke-width:0.25;}
  30. .st24{fill:none;stroke:#536256;stroke-width:0.2125;stroke-miterlimit:1;}
  31. .st25{fill:#536256;}
  32. .st26{fill:none;stroke:#536256;stroke-width:0.9;stroke-miterlimit:3.8637;}
  33. .st27{fill:none;stroke:#99B19C;stroke-width:0.17;}
  34. .st28{fill:none;stroke:#536256;stroke-width:0.17;}
  35. .st29{clip-path:url(#SVGID_4_);}
  36. .st30{fill:none;stroke:#373A37;stroke-width:0.9;}
  37. .st31{fill:none;stroke:#373A37;stroke-width:0.3825;}
  38. .st32{fill:none;stroke:#373A37;stroke-width:0.2125;}
  39. .st33{fill:none;stroke:#373A37;stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;}
  40. .st34{fill:none;stroke:#373A37;stroke-width:0.25;}
  41. .st35{fill:none;stroke:#373A37;stroke-width:0.2125;stroke-miterlimit:1;}
  42. .st36{fill:#373A37;}
  43. .st37{fill:none;stroke:#373A37;stroke-width:0.9;stroke-miterlimit:3.8637;}
  44. .st38{fill:none;stroke:#ACB3AE;stroke-width:0.17;}
  45. .st39{fill:none;stroke:#373A37;stroke-width:0.17;}
  46. .st40{clip-path:url(#SVGID_6_);}
  47. .st41{fill:#C1DFC4;}
  48. .st42{fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:3.8637;}
  49. .st43{font-size:8px;}
  50. .st44{fill:none;stroke:#000000;stroke-width:1.697;stroke-miterlimit:3.8637;}
  51. .st45{fill:#312783;}
  52. .st46{fill:none;stroke:#312783;stroke-width:0.25;stroke-miterlimit:3.8637;}
  53. .st47{fill:#E30613;}
  54. .st48{fill:none;stroke:#E30613;stroke-width:0.25;stroke-miterlimit:3.8637;}
  55. .st49{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#000000;stroke-width:1.28;stroke-miterlimit:3.8637;}
  56. .st50{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#000000;stroke-width:0.5;stroke-miterlimit:3.8637;}
  57. .st51{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#000000;stroke-width:0.7501;stroke-miterlimit:3.8637;}
  58. .st52{fill-rule:evenodd;clip-rule:evenodd;fill:#E30613;}
  59. .st53{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#E30613;stroke-width:0.128;stroke-miterlimit:3.8637;}
  60. .st54{fill-rule:evenodd;clip-rule:evenodd;fill:#312783;}
  61. .st55{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#312783;stroke-width:0.128;stroke-miterlimit:3.8637;}
  62. .st56{fill:none;stroke:#312783;stroke-width:0.6;stroke-miterlimit:3.8637;}
  63. .st57{fill:none;stroke:#E30613;stroke-width:0.6;stroke-miterlimit:3.8637;}
  64. </style>
  65. <path class="st0" d="M311,402.7c0,0,0-5.1,0-9c0-3.9-0.2-18.8-0.2-20.4c0-1.6-0.2-6.9,1.8-6.9c2.1,0,12.6-0.7,23.6,3.7
  66. c11,4.4,20.4,6.2,23.4,17"/>
  67. <path class="st1" d="M310.9,401.3c0-2.5-0.8-12.6,6.3-12.3c5,0.2,18.1-2.5,22-2.8c5-0.3,15.5-0.9,20.4,0.9
  68. c5.7,2.1,17.2,11.5,19.5,18.3"/>
  69. <path class="st2" d="M448,311.9c-5.7-0.8-21.1-1.9-26.6-1.7c-5.5,0.2-10.6,0.9-14.9,3.4c-4.4,2.5-16.1,9.6-17.9,17.2
  70. c-1.8,7.6,0,18.8,1.4,23.2c1.4,4.4,2.5,9.6,3.7,12.4c1.1,2.8,3.9,12.2,13.3,14.2c9.4,2.1,13.3-0.7,20.4-3.9
  71. c7.1-3.2,16.6-8.1,20.2-10.4"/>
  72. <path class="st0" d="M303.6,402.7c0,0,0-5.1,0-9c0-3.9,0.2-18.8,0.2-20.4c0-1.6,0.2-6.9-1.8-6.9c-2.1,0-12.6-0.7-23.6,3.7
  73. c-11,4.4-20.4,6.2-23.4,17"/>
  74. <path class="st1" d="M303.6,401.3c0-2.5,0.4-12.1-6.1-12.3c-5-0.1-18.1-2.5-22-2.8c-5-0.3-15.5-0.9-20.4,0.9
  75. c-5.7,2.1-17.2,11.5-19.5,18.3"/>
  76. <path class="st2" d="M166.5,310.4c5.7-0.8,21.2-0.4,26.7-0.2c5.5,0.2,10.6,0.9,14.9,3.4c4.4,2.5,16.1,9.6,17.9,17.2
  77. c1.8,7.6,0,18.8-1.4,23.2c-1.4,4.4-2.5,9.6-3.7,12.4c-1.1,2.8-3.9,12.2-13.3,14.2c-9.4,2.1-13.3-0.7-20.4-3.9
  78. c-7.1-3.2-16.3-7.1-19.8-9.4"/>
  79. <path class="st3" d="M448.1,375.4l-4.9,2.6c-14.9,7.8-22.9,11.2-28.2,12.6c-5.3,1.4-12.4,5.5-16.3,6.9c-3.9,1.4-12.6,2.5-14.9,3.4
  80. c-2.3,0.9-4.1,4.8-7.3,7.1c-3.2,2.3-21.8,5.4-38.3,6.7c-9.2,0.7-19.7-4.4-22.5-6.9c-2.8-2.5-5-6.9-8.3-6.9c-3.3,0-5.5,4.4-8.3,6.9
  81. c-2.8,2.5-13.3,7.6-22.5,6.9c-16.5-1.2-35.1-4.4-38.3-6.7c-3.2-2.3-5-6.2-7.3-7.1c-2.3-0.9-11-2.1-14.9-3.4
  82. c-3.9-1.4-11-5.5-16.3-6.9c-5.3-1.4-13.3-4.8-28.2-12.6l-5.2-2.7"/>
  83. <path class="st4" d="M350.4,370.2c1.7-0.5,7.9-0.1,10.7,1.7c2.8,1.8,9.4,7.5,12.2,9.4c2.8,1.9,6.7,4.6,10.1,7.3
  84. c3.4,2.8,7.9,6.9,10.3,6.4c3.2-0.7,6.7-5.5,7.8-7.1c1.1-1.6,2.8-6.2,0.7-9.2"/>
  85. <path class="st4" d="M348.7,350.8c3.8-3.6,18.7-15.5,40.5-21.7"/>
  86. <path class="st5" d="M366.1,376c-1.1-0.9-3-3.4-1.2-5.2c1.8-1.8,5.7-0.9,9.2,2.1c3.4,3,6.9,9,1.6,10.1"/>
  87. <path class="st5" d="M374.1,372.9c1.8-2.3,12.2-9,17.7-11"/>
  88. <path class="st5" d="M376.3,281.1c3.2,8,10.6,28,12.9,48"/>
  89. <path class="st4" d="M255.9,371c14.2-41.1,46.4-44.9,51.4-44.9c5,0,37.2,3.8,51.4,44.9"/>
  90. <path class="st4" d="M260.3,378.8c7.3-24.1,41.3-32.7,47-32.7c5.7,0,39.7,8.6,47,32.7"/>
  91. <path class="st4" d="M264.3,370.2c-1.7-0.5-7.9-0.1-10.7,1.7c-2.8,1.8-9.4,7.5-12.2,9.4c-2.8,1.9-6.7,4.6-10.1,7.3
  92. s-7.9,6.9-10.3,6.4c-3.2-0.7-6.7-5.5-7.8-7.1c-1.1-1.6-2.8-6.2-0.7-9.2"/>
  93. <path class="st4" d="M265.9,350.8c-3.8-3.6-18.7-15.5-40.5-21.7"/>
  94. <path class="st4" d="M248.5,376c1.1-0.9,3-3.4,1.2-5.2c-1.8-1.8-5.7-0.9-9.2,2.1c-3.4,3-6.9,9-1.6,10.1"/>
  95. <path class="st4" d="M240.5,372.9c-1.8-2.3-12.2-9-17.7-11"/>
  96. <path class="st5" d="M303.7,369.2c0-4.1,1.8-6,3.6-6c1.8,0,3.6,1.8,3.6,6"/>
  97. <path class="st4" d="M238.2,281.1c-3.2,8-10.5,28-12.8,48"/>
  98. <line class="st6" x1="307.3" y1="378.3" x2="317.4" y2="391.2"/>
  99. <line class="st6" x1="370.8" y1="375.1" x2="372" y2="366.9"/>
  100. <g>
  101. <text transform="matrix(1 0 0 1 308.2109 337.8745)" class="st7 st8">GiA</text>
  102. </g>
  103. <g>
  104. <text transform="matrix(1 0 0 1 312.2646 359.4116)" class="st7 st8">RMg</text>
  105. </g>
  106. <g>
  107. <text transform="matrix(1 0 0 1 327.9717 381.0229)" class="st7 st8">ml</text>
  108. </g>
  109. <g>
  110. <text transform="matrix(1 0 0 1 343.0693 401.9131)" class="st7 st8">p</text>
  111. <text transform="matrix(1 0 0 1 347.9902 401.9131)" class="st7 st8">y</text>
  112. </g>
  113. <g>
  114. <text transform="matrix(1 0 0 1 358.6411 352.4351)" class="st7 st8">LPGiA</text>
  115. </g>
  116. <g>
  117. <text transform="matrix(1 0 0 1 380.5591 385.1597)" class="st7 st8">LPGiE</text>
  118. </g>
  119. <g>
  120. <text transform="matrix(1 0 0 1 314.8828 400.3384)" class="st7 st8">RP</text>
  121. <text transform="matrix(1 0 0 1 326.9985 400.3384)" class="st7 st8">a</text>
  122. </g>
  123. <g>
  124. <text transform="matrix(1 0 0 1 371.3765 366.292)" class="st7 st8">PP</text>
  125. <text transform="matrix(1 0 0 1 383.2705 366.292)" class="st7 st8">y</text>
  126. </g>
  127. <g>
  128. <text transform="matrix(1 0 0 1 423.1021 346.5273)" class="st7 st8">7</text>
  129. </g>
  130. <g>
  131. <text transform="matrix(1 0 0 1 397.0352 298.4111)" class="st7 st8">IR</text>
  132. <text transform="matrix(1 0 0 1 405.8872 298.4111)" class="st7 st8">tA</text>
  133. </g>
  134. <g>
  135. <text transform="matrix(1 0 0 1 323.1284 301.1509)" class="st7 st8">Gi</text>
  136. </g>
  137. <g>
  138. <g>
  139. <polygon class="st9" points="167,281.4 447.8,281.4 447.8,421.4 167,421.4 167,281.4 "/>
  140. <path class="st9" d="M307.4,351.4"/>
  141. </g>
  142. <line class="st10" x1="194.7" y1="281.2" x2="194.7" y2="421.8"/>
  143. <line class="st10" x1="250.8" y1="281.1" x2="250.8" y2="421.8"/>
  144. <line class="st10" x1="306.9" y1="280.9" x2="306.9" y2="421.8"/>
  145. <line class="st10" x1="363" y1="281.1" x2="363" y2="421.8"/>
  146. <line class="st10" x1="419.2" y1="281.1" x2="419.2" y2="421.8"/>
  147. <line class="st11" x1="172.3" y1="417.9" x2="172.3" y2="421.8"/>
  148. <line class="st11" x1="183.5" y1="421.8" x2="183.5" y2="417.9"/>
  149. <g>
  150. <line class="st11" x1="205.9" y1="417.9" x2="205.9" y2="421.8"/>
  151. <line class="st11" x1="228.4" y1="417.9" x2="228.4" y2="421.8"/>
  152. <line class="st11" x1="217.2" y1="421.8" x2="217.2" y2="417.9"/>
  153. <line class="st11" x1="239.6" y1="421.8" x2="239.6" y2="417.9"/>
  154. </g>
  155. <g>
  156. <line class="st11" x1="262" y1="417.9" x2="262" y2="421.8"/>
  157. <line class="st11" x1="284.5" y1="417.9" x2="284.5" y2="421.8"/>
  158. <line class="st11" x1="273.3" y1="421.8" x2="273.3" y2="417.9"/>
  159. <line class="st11" x1="295.7" y1="421.8" x2="295.7" y2="417.9"/>
  160. </g>
  161. <g>
  162. <line class="st11" x1="318.2" y1="417.9" x2="318.2" y2="421.8"/>
  163. <line class="st11" x1="340.6" y1="417.9" x2="340.6" y2="421.8"/>
  164. <line class="st11" x1="329.4" y1="421.8" x2="329.4" y2="417.9"/>
  165. <line class="st11" x1="351.8" y1="421.8" x2="351.8" y2="417.9"/>
  166. </g>
  167. <g>
  168. <line class="st11" x1="374.3" y1="417.9" x2="374.3" y2="421.8"/>
  169. <line class="st11" x1="396.7" y1="417.9" x2="396.7" y2="421.8"/>
  170. <line class="st11" x1="385.5" y1="421.8" x2="385.5" y2="417.9"/>
  171. <line class="st11" x1="407.9" y1="421.8" x2="407.9" y2="417.9"/>
  172. </g>
  173. <line class="st11" x1="430.4" y1="417.9" x2="430.4" y2="421.8"/>
  174. <line class="st11" x1="441.6" y1="421.8" x2="441.6" y2="417.9"/>
  175. <g>
  176. <g>
  177. <text transform="matrix(1 0 0 1 192.1357 425.7881)" class="st7 st12">2</text>
  178. </g>
  179. </g>
  180. <g>
  181. <g>
  182. <text transform="matrix(1 0 0 1 248.2461 425.7881)" class="st7 st12">1</text>
  183. </g>
  184. </g>
  185. <g>
  186. <g>
  187. <text transform="matrix(1 0 0 1 304.3564 425.7881)" class="st7 st12">0</text>
  188. </g>
  189. </g>
  190. <g>
  191. <g>
  192. <text transform="matrix(1 0 0 1 360.4668 425.7881)" class="st7 st12">1</text>
  193. </g>
  194. </g>
  195. <g>
  196. <g>
  197. <text transform="matrix(1 0 0 1 416.5771 425.7881)" class="st7 st12">2</text>
  198. </g>
  199. </g>
  200. <line class="st10" x1="447.8" y1="309.6" x2="166.7" y2="309.6"/>
  201. <line class="st10" x1="447.5" y1="365.7" x2="166.3" y2="365.7"/>
  202. </g>
  203. <g>
  204. <path class="st13" d="M449.5,147.6c-21.5,15-63.9,29.1-72.1,27.4c0,0-11.1,9.1-27.2,10c-16.1,0.9-36-9.1-37.8-11.1
  205. c-1.8-2.1-2.2-4.1-4.3-4.1c-2.1,0-2.5,2-4.3,4.1c-1.8,2.1-21.7,12-37.8,11.1c-16.1-0.9-27.2-10-27.2-10
  206. c-8.2,1.8-50.1-11.2-70.8-26.9"/>
  207. <path class="st3" d="M449.5,147.6c-21.5,15-63.9,29.1-72.1,27.4c0,0-11.1,9.1-27.2,10c-16.1,0.9-36-9.1-37.8-11.1
  208. c-1.8-2.1-2.2-4.1-4.3-4.1c-2.1,0-2.5,2-4.3,4.1c-1.8,2.1-21.7,12-37.8,11.1c-16.1-0.9-27.2-10-27.2-10
  209. c-8.2,1.8-50.1-11.2-70.8-26.9"/>
  210. </g>
  211. <path class="st0" d="M449.1,137.9c-4.1,3.5-11.3,8.4-14.3,10.4c-2.9,2.1-10,8.7-12.6,10.2"/>
  212. <path class="st1" d="M308.1,169.7c0-1.8,0.2-9.1,4-9.1c3.8,0,7.3,0.3,11.7,0.3s11.4-2.3,13.8-4.1c2.3-1.8,7.3-3.5,10.3-2.9
  213. c2.9,0.6,4.4,0.4,7.3,2.1c2.9,1.8,22.9,16.3,22.3,19"/>
  214. <path class="st4" d="M311.2,135.4c0,0,6.4,0.9,10,2.1c3.5,1.2,13.5,6.2,16.4,7.3c2.9,1.2,12.3,6.8,17.6,11.2"/>
  215. <path class="st4" d="M427.6,87.3c-7.7-1.7-17.6-1.4-22.9,1.5c-5.3,2.9-16.1,11.1-19,16.7c-2.9,5.6-5,20.8-2.6,25.5
  216. c2.3,4.7,8.8,12,15.2,10c6.4-2.1,10.1-5.7,15.8-9.2"/>
  217. <path class="st14" d="M445,119.9c-1.7,2.6-7.9,6.1-13.2,8.5"/>
  218. <path class="st0" d="M374.8,171.4c4,0.6,7.3,1.2,18.1-2.6"/>
  219. <path class="st0" d="M168.5,139.9c3.1,1.7,22.9,17.1,25.5,18.5"/>
  220. <path class="st1" d="M308.1,169.7c0-1.8-0.2-9.1-4-9.1c-3.8,0-7.3,0.3-11.7,0.3c-4.4,0-11.4-2.3-13.8-4.1c-2.3-1.8-7.3-3.5-10.3-2.9
  221. c-2.9,0.6-4.4,0.4-7.3,2.1c-2.9,1.8-22.9,16.3-22.3,19"/>
  222. <path class="st4" d="M305,135.4c0,0-6.4,0.9-10,2c-3.5,1.2-13.5,6.2-16.4,7.3c-2.9,1.2-12.3,6.8-17.6,11.2"/>
  223. <path class="st4" d="M188.7,87.3c7.7-1.7,17.6-1.4,22.9,1.5c5.3,2.9,16.1,11.1,19,16.7c2.9,5.6,5,20.8,2.6,25.5
  224. c-2.3,4.7-8.8,12-15.2,10c-6.4-2.1-10.1-5.7-15.8-9.2"/>
  225. <path class="st2" d="M171.2,119.9c1.7,2.6,7.9,6.1,13.2,8.5"/>
  226. <path class="st0" d="M241.4,171.4c-4,0.6-7.3,1.2-18.1-2.6"/>
  227. <path class="st4" d="M386.3,53.2c1.8,5,9.8,30,11.9,39.7"/>
  228. <path class="st4" d="M448.3,77.5c-3.2,1.5-9-0.7-15.4,4.9c-1.6,1.4-7.5,6.1-4.8,10.2c2.6,4.1,14.1,23.4,16.1,26.4
  229. c2.1,2.9,3.3,4.3,5.3,3.9"/>
  230. <path class="st4" d="M348.1,134.8c4.7-0.9,14.2,5.5,18,10.8c3.8,5.3,13.7,14.1,11,26.1"/>
  231. <path class="st4" d="M396.5,141.5c-4.1,0-17.6,0.3-18.5,7.1c-0.9,6.7,3.4,13.7,12.9,12.3"/>
  232. <path class="st4" d="M422.5,128.4c4.4-0.4,9.1-1.5,12,2.1c2.9,3.5,6.2,6.7,1.2,12.6c-5,5.9-11.7,7.6-16.1,7
  233. c-4.4-0.6-8.8-2.6-9.7-6.7c-0.9-4.1-0.6-8.3,2.6-10.6C415.8,130.4,418.7,128.7,422.5,128.4z"/>
  234. <path class="st4" d="M388,165.3c0.3,2.2,3.2,4.4,8.5,2.9c5.3-1.5,12.3-3.5,17.3-5.6c5-2.1,12-5,10.5-8.2c-1.5-3.2-10.8-3.6-14.6-2.9
  235. C394.8,154.1,387.2,160.4,388,165.3z"/>
  236. <path class="st4" d="M334.2,115.3c3.9-2.5,24.2-9.2,27.4-9.8c3.2-0.6,20.5-0.3,24,0"/>
  237. <path class="st4" d="M355.6,136.7c3.8-1.7,19.6-7.2,26.3-8.1"/>
  238. <path class="st4" d="M230.4,52.8c-0.6,5.6-0.7,2-2.5,7c-1.8,5-7.9,23.4-10,33.1"/>
  239. <path class="st4" d="M168.9,77.1c3.2,1.5,16.9,7.3,18.4,8.8c1.5,1.5,3.5,2.6,0.9,6.7c-2.6,4.1-16.6,29.8-20.1,30.7"/>
  240. <path class="st4" d="M261.1,156c1.8-4.4,5.6-15.6,7-21.2c1.5-5.6,5-10.8,7.3-13.5c2.3-2.6,10.5-9.4,16.7-14.4c6.2-5,10.8-7.6,16-7.6
  241. s10.5,1.5,16.7,6.5c6.2,5,13.7,12.8,16,15.5c2.3,2.6,5.9,7.9,7.3,13.5c1.5,5.6,5.3,16.8,7,21.2"/>
  242. <path class="st4" d="M265.1,144.4c6.7-7.2,23.5-18.1,28.5-21.6c5-3.5,12.4-5.5,15.8-5.5c3.4,0,10.4,1.3,15.4,4.9
  243. c5,3.5,19.7,15.1,26.3,22.3"/>
  244. <path class="st5" d="M305,135.4c0-1.2,2.3-2.1,3.1-2.1s3.1,0.9,3.1,2.1"/>
  245. <path class="st4" d="M268.1,134.8c-4.7-0.9-13.2,1.2-17,6.4c-3.8,5.3-14.6,18.4-12,30.4"/>
  246. <path class="st4" d="M224.8,140.1c4.1,0,12.6,1.8,13.4,8.5c0.9,6.7-3.4,13.7-12.9,12.3"/>
  247. <path class="st4" d="M193.7,128.4c-4.4-0.4-9.1-1.5-12,2.1c-2.9,3.5-6.2,6.7-1.2,12.6c5,5.9,11.7,7.6,16.1,7
  248. c4.4-0.6,8.8-2.6,9.7-6.7c0.9-4.1,0.6-8.3-2.6-10.6C200.4,130.4,197.5,128.7,193.7,128.4z"/>
  249. <path class="st4" d="M228.3,165.3c-0.3,2.2-3.2,4.4-8.5,2.9c-5.3-1.5-12.3-3.5-17.3-5.6c-5-2.1-12-5-10.5-8.2
  250. c1.5-3.2,10.8-3.8,14.6-2.9C210.4,152.4,229,160.4,228.3,165.3z"/>
  251. <path class="st4" d="M282,115.3c-3.9-2.5-24.2-9.2-27.4-9.8c-3.2-0.6-20.5-0.3-24,0"/>
  252. <path class="st4" d="M256.1,137.1c-3.8-1.7-16.1-5.2-22.8-6.1"/>
  253. <path class="st4" d="M309.6,162.1c0.7-4,1.9-10.3,1.9-14.1c0-3.8-0.3-12.6-0.3-12.6"/>
  254. <path class="st4" d="M306.6,162.1c-0.7-4-1.9-10.3-1.9-14.1c0-3.8,0.3-12.6,0.3-12.6"/>
  255. <g>
  256. <g>
  257. <polygon class="st9" points="168.3,52.8 449.2,52.8 449.2,192.8 168.3,192.8 168.3,52.8 "/>
  258. <path class="st9" d="M308.7,122.8"/>
  259. </g>
  260. <line class="st10" x1="196.1" y1="52.7" x2="196.1" y2="193.2"/>
  261. <line class="st10" x1="252.2" y1="52.5" x2="252.2" y2="193.2"/>
  262. <line class="st10" x1="308.3" y1="52.3" x2="308.3" y2="193.2"/>
  263. <line class="st10" x1="364.4" y1="52.5" x2="364.4" y2="193.2"/>
  264. <line class="st10" x1="420.5" y1="52.5" x2="420.5" y2="193.2"/>
  265. <line class="st11" x1="173.6" y1="189.3" x2="173.6" y2="193.2"/>
  266. <line class="st11" x1="184.8" y1="193.2" x2="184.8" y2="189.3"/>
  267. <g>
  268. <line class="st11" x1="207.3" y1="189.3" x2="207.3" y2="193.2"/>
  269. <line class="st11" x1="229.7" y1="189.3" x2="229.7" y2="193.2"/>
  270. <line class="st11" x1="218.5" y1="193.2" x2="218.5" y2="189.3"/>
  271. <line class="st11" x1="241" y1="193.2" x2="241" y2="189.3"/>
  272. </g>
  273. <g>
  274. <line class="st11" x1="263.4" y1="189.3" x2="263.4" y2="193.2"/>
  275. <line class="st11" x1="285.8" y1="189.3" x2="285.8" y2="193.2"/>
  276. <line class="st11" x1="274.6" y1="193.2" x2="274.6" y2="189.3"/>
  277. <line class="st11" x1="297.1" y1="193.2" x2="297.1" y2="189.3"/>
  278. </g>
  279. <g>
  280. <line class="st11" x1="319.5" y1="189.3" x2="319.5" y2="193.2"/>
  281. <line class="st11" x1="341.9" y1="189.3" x2="341.9" y2="193.2"/>
  282. <line class="st11" x1="330.7" y1="193.2" x2="330.7" y2="189.3"/>
  283. <line class="st11" x1="353.2" y1="193.2" x2="353.2" y2="189.3"/>
  284. </g>
  285. <g>
  286. <line class="st11" x1="375.6" y1="189.3" x2="375.6" y2="193.2"/>
  287. <line class="st11" x1="398.1" y1="189.3" x2="398.1" y2="193.2"/>
  288. <line class="st11" x1="386.8" y1="193.2" x2="386.8" y2="189.3"/>
  289. <line class="st11" x1="409.3" y1="193.2" x2="409.3" y2="189.3"/>
  290. </g>
  291. <line class="st11" x1="431.7" y1="189.3" x2="431.7" y2="193.2"/>
  292. <line class="st11" x1="442.9" y1="193.2" x2="442.9" y2="189.3"/>
  293. <g>
  294. <g>
  295. <text transform="matrix(1 0 0 1 193.4785 197.2202)" class="st7 st12">2</text>
  296. </g>
  297. </g>
  298. <g>
  299. <g>
  300. <text transform="matrix(1 0 0 1 249.5889 197.2202)" class="st7 st12">1</text>
  301. </g>
  302. </g>
  303. <g>
  304. <g>
  305. <text transform="matrix(1 0 0 1 305.6992 197.2202)" class="st7 st12">0</text>
  306. </g>
  307. </g>
  308. <g>
  309. <g>
  310. <text transform="matrix(1 0 0 1 361.8091 197.2202)" class="st7 st12">1</text>
  311. </g>
  312. </g>
  313. <g>
  314. <g>
  315. <text transform="matrix(1 0 0 1 417.9194 197.2202)" class="st7 st12">2</text>
  316. </g>
  317. </g>
  318. <line class="st10" x1="449.2" y1="81" x2="168" y2="81"/>
  319. <line class="st10" x1="448.9" y1="137.1" x2="167.7" y2="137.1"/>
  320. </g>
  321. <line class="st6" x1="308.1" y1="143" x2="314.5" y2="143"/>
  322. <g>
  323. <text transform="matrix(1 0 0 1 317.687 75.1509)" class="st7 st8">Gi</text>
  324. </g>
  325. <g>
  326. <text transform="matrix(1 0 0 1 310.6899 115.5735)" class="st7 st8">GiA</text>
  327. </g>
  328. <g>
  329. <text transform="matrix(1 0 0 1 312.8413 132.0608)" class="st7 st8">RMg</text>
  330. </g>
  331. <g>
  332. <text transform="matrix(1 0 0 1 319.2192 156.1106)" class="st7 st8">ml</text>
  333. </g>
  334. <g>
  335. <text transform="matrix(1 0 0 1 340.2944 176.0977)" class="st7 st8">p</text>
  336. <text transform="matrix(1 0 0 1 345.2153 176.0977)" class="st7 st8">y</text>
  337. </g>
  338. <g>
  339. <text transform="matrix(1 0 0 1 349.917 123.1638)" class="st7 st8">LPGiA</text>
  340. </g>
  341. <g>
  342. <text transform="matrix(1 0 0 1 384.7192 152.4253)" class="st7 st8">CPO</text>
  343. </g>
  344. <g>
  345. <text transform="matrix(1 0 0 1 394.1323 162.2336)" class="st7 st8">MVPO</text>
  346. </g>
  347. <g>
  348. <text transform="matrix(1 0 0 1 415.0527 143.1304)" class="st7 st8">LSO</text>
  349. </g>
  350. <g>
  351. <text transform="matrix(1 0 0 1 406.7119 114.4968)" class="st7 st8">7</text>
  352. </g>
  353. <g>
  354. <text transform="matrix(1 0 0 1 434.9126 95.9072)" class="st7 st8">A5</text>
  355. </g>
  356. <g>
  357. <text transform="matrix(1 0 0 1 364.0928 141.8142)" class="st7 st8">LPGiE</text>
  358. </g>
  359. <g>
  360. <text transform="matrix(1 0 0 1 400.6509 68.5088)" class="st7 st8">IR</text>
  361. <text transform="matrix(1 0 0 1 409.5029 68.5088)" class="st7 st8">tA</text>
  362. </g>
  363. <g>
  364. <text transform="matrix(1 0 0 1 310.3486 146.3416)" class="st7 st8">RP</text>
  365. <text transform="matrix(1 0 0 1 322.4644 146.3416)" class="st7 st8">a</text>
  366. </g>
  367. <path class="st1" d="M324.2,635.9c0.8-2.8,3.7-6.3,7.4-6.5c3.7-0.2,31.4,1.8,39.2,4.8c7.8,3,12.4,5.5,15.1,8.7
  368. c2.8,3.2,8.5,6.7,4.6,10.6"/>
  369. <path class="st0" d="M326.3,632.1c-1.2-3.2-2.5-18.6,0.2-20c2.8-1.4,9-0.5,12.9,0.7c3.9,1.1,17,7.3,20.9,9.6
  370. c3.9,2.3,8.3,4.1,10.6,11.7"/>
  371. <path class="st2" d="M462.2,561.4c-2.5-2.1-2.8-4.3-14.9-3.6c-12.2,0.7-25,3-34.7,16.5c-9.6,13.5-10.8,28.5-8.5,36.3
  372. c2.3,7.8,7.3,11.5,13.5,14c6.2,2.5,19,2.1,28.2-1.1c9.2-3.2,9-2.3,16.3-8.9"/>
  373. <path class="st0" d="M445.6,632.6c0.1-3.7,2.6-4.8,5.4-6c2.8-1.1,6.4-1.2,11.3-6.2"/>
  374. <path class="st1" d="M319.3,635.9c-0.8-2.8-3.7-6.3-7.4-6.5c-3.7-0.2-31.4,1.8-39.2,4.8c-7.8,3-12.4,5.5-15.1,8.7
  375. c-2.8,3.2-8.5,6.7-4.6,10.6"/>
  376. <path class="st0" d="M317.1,632.1c1.2-3.2,2.5-18.6-0.2-20c-2.8-1.4-9-0.5-12.9,0.7c-3.9,1.1-17,7.3-20.9,9.6
  377. c-3.9,2.3-8.3,4.1-10.6,11.7"/>
  378. <path class="st2" d="M181.2,560.7c2.5-2.1,2.9-3.7,15-3c12.2,0.7,25,3,34.7,16.5c9.6,13.5,10.8,28.5,8.5,36.3
  379. c-2.3,7.8-7.3,11.5-13.5,14c-6.2,2.5-19,2.1-28.2-1.1c-9.2-3.2-9.1-2.9-16.4-9.6"/>
  380. <path class="st0" d="M197.9,632.6c-0.1-3.7-2.6-4.8-5.4-6c-2.8-1.1-6.5-1.2-11.4-6.2"/>
  381. <path class="st3" d="M462.2,626.2c-4.8,3-1.8,1.8-15.4,6c-3.3,1-6,3.7-9,4.8c-9.2,3.6-16.9,6-19.3,7.6c-3.2,2.1-5.7,4.1-8.5,5.3
  382. c-2.8,1.1-5,2.5-19.5,3.7c-14.5,1.1-32.1,2.1-34.9,2.5c-2.8,0.5-9.9,2.5-15.8-0.7c-6-3.2-13.8-9.2-14-11.7c-0.2-2.5,0.2-8.7-4.1-8.7
  383. c-4.4,0-3.9,6.2-4.1,8.7c-0.2,2.5-8,8.5-14,11.7c-6,3.2-13.1,1.1-15.8,0.7c-2.8-0.5-20.4-1.4-34.9-2.5c-14.5-1.1-16.8-2.5-19.5-3.7
  384. c-2.8-1.1-5.3-3.2-8.5-5.3c-2.4-1.6-10.1-4-19.3-7.6c-3-1.2-5.6-3.8-9-4.8c-13.5-4.1-10.1-3-14.9-6"/>
  385. <path class="st5" d="M352.3,584.1c9.8-5.9,30.5-13.5,56.7-5"/>
  386. <path class="st5" d="M380.8,614.2c4.9-0.4,17.3-0.8,23.5-2.9"/>
  387. <path class="st5" d="M376.6,619.3c5.8,4.5,30.5,44.4,40.4,4.9"/>
  388. <path class="st5" d="M392.3,523.8c4.4,31.3,10.5,30.7,20.3,50.5"/>
  389. <path class="st5" d="M277.2,626.4c-0.2-5,5.3-15.6,8.9-18.6c3.7-3,10.8-7.1,18.1-10.8c7.3-3.7,12.6-7.1,17.4-7.1
  390. c4.8,0,10.1,3.4,17.4,7.1c7.3,3.7,14.5,7.8,18.1,10.8c3.7,3,9.1,13.6,8.9,18.6"/>
  391. <path class="st5" d="M317.6,612.9c0-3.9,2.6-5.1,4.2-5.1c1.6,0,4.2,1.2,4.2,5.1"/>
  392. <path class="st5" d="M273.3,609c21-39.5,44.5-39,48.4-39c3.9,0,27.4-0.5,48.4,39"/>
  393. <path class="st5" d="M291.2,584.1c-9.8-5.9-30.5-13.5-56.7-5"/>
  394. <path class="st5" d="M282,613.2c0.1-2.6-2.7-5.1-10.3-4c-3,0.5-9.9,2.8-9.4,6.9c0.5,4.1,6.2,3.4,9.9,2.8c2.8-0.5,6.9-2,8.8-3.7"/>
  395. <path class="st5" d="M262.6,614.2c-4.9-0.4-17.3-0.8-23.5-2.9"/>
  396. <path class="st5" d="M266.9,619.3c-5.8,4.5-30.5,44.4-40.4,4.9"/>
  397. <path class="st5" d="M251.7,524.4c-12.3,24.6-11,30.1-20.8,49.9"/>
  398. <path class="st5" d="M361.5,613.2c-0.1-2.6,2.7-5.1,10.3-4c3,0.5,9.9,2.8,9.4,6.9c-0.5,4.1-6.2,3.4-9.9,2.8c-2.8-0.5-6.9-2-8.8-3.7"
  399. />
  400. <line class="st6" x1="329.7" y1="632.7" x2="321.9" y2="618.1"/>
  401. <line class="st6" x1="372.9" y1="614.3" x2="383.4" y2="608.4"/>
  402. <g>
  403. <text transform="matrix(1 0 0 1 329.7573 543.332)" class="st7 st8">Gi</text>
  404. </g>
  405. <g>
  406. <text transform="matrix(1 0 0 1 412.8472 542.4253)" class="st7 st8">IR</text>
  407. <text transform="matrix(1 0 0 1 421.6992 542.4253)" class="st7 st8">tA</text>
  408. </g>
  409. <g>
  410. <text transform="matrix(1 0 0 1 325.3682 583.7339)" class="st7 st8">GiA</text>
  411. </g>
  412. <g>
  413. <text transform="matrix(1 0 0 1 326.6782 604.2749)" class="st7 st8">RMg</text>
  414. </g>
  415. <g>
  416. <text transform="matrix(1 0 0 1 331.3364 624.4321)" class="st7 st8">ml</text>
  417. </g>
  418. <g>
  419. <text transform="matrix(1 0 0 1 350.6479 646.1587)" class="st7 st8">p</text>
  420. <text transform="matrix(1 0 0 1 355.5688 646.1587)" class="st7 st8">y</text>
  421. </g>
  422. <g>
  423. <text transform="matrix(1 0 0 1 328.978 641.6011)" class="st7 st8">RP</text>
  424. <text transform="matrix(1 0 0 1 341.0938 641.6011)" class="st7 st8">a</text>
  425. </g>
  426. <g>
  427. <text transform="matrix(1 0 0 1 383.0928 607.6509)" class="st7 st8">PP</text>
  428. <text transform="matrix(1 0 0 1 394.9868 607.6509)" class="st7 st8">y</text>
  429. </g>
  430. <g>
  431. <text transform="matrix(1 0 0 1 370.4707 592.8467)" class="st7 st8">LPGiA</text>
  432. </g>
  433. <g>
  434. <text transform="matrix(1 0 0 1 389.4536 628.563)" class="st7 st8">LPGiE</text>
  435. </g>
  436. <g>
  437. <text transform="matrix(1 0 0 1 424.5566 599.2549)" class="st7 st8">7</text>
  438. </g>
  439. <g>
  440. <g>
  441. <polygon class="st9" points="181.2,523.8 462,523.8 462,663.8 181.2,663.8 181.2,523.8 "/>
  442. <path class="st9" d="M321.6,593.8"/>
  443. </g>
  444. <line class="st10" x1="208.9" y1="523.7" x2="208.9" y2="664.2"/>
  445. <line class="st10" x1="265" y1="523.5" x2="265" y2="664.2"/>
  446. <line class="st10" x1="321.1" y1="523.3" x2="321.2" y2="664.2"/>
  447. <line class="st10" x1="377.3" y1="523.5" x2="377.3" y2="664.2"/>
  448. <line class="st10" x1="433.4" y1="523.5" x2="433.4" y2="664.2"/>
  449. <line class="st11" x1="186.5" y1="660.3" x2="186.5" y2="664.2"/>
  450. <line class="st11" x1="197.7" y1="664.2" x2="197.7" y2="660.3"/>
  451. <g>
  452. <line class="st11" x1="220.2" y1="660.3" x2="220.2" y2="664.2"/>
  453. <line class="st11" x1="242.6" y1="660.3" x2="242.6" y2="664.2"/>
  454. <line class="st11" x1="231.4" y1="664.2" x2="231.4" y2="660.3"/>
  455. <line class="st11" x1="253.8" y1="664.2" x2="253.8" y2="660.3"/>
  456. </g>
  457. <g>
  458. <line class="st11" x1="276.3" y1="660.3" x2="276.3" y2="664.2"/>
  459. <line class="st11" x1="298.7" y1="660.3" x2="298.7" y2="664.2"/>
  460. <line class="st11" x1="287.5" y1="664.2" x2="287.5" y2="660.3"/>
  461. <line class="st11" x1="309.9" y1="664.2" x2="309.9" y2="660.3"/>
  462. </g>
  463. <g>
  464. <line class="st11" x1="332.4" y1="660.3" x2="332.4" y2="664.2"/>
  465. <line class="st11" x1="354.8" y1="660.3" x2="354.8" y2="664.2"/>
  466. <line class="st11" x1="343.6" y1="664.2" x2="343.6" y2="660.3"/>
  467. <line class="st11" x1="366" y1="664.2" x2="366" y2="660.3"/>
  468. </g>
  469. <g>
  470. <line class="st11" x1="388.5" y1="660.3" x2="388.5" y2="664.2"/>
  471. <line class="st11" x1="410.9" y1="660.3" x2="410.9" y2="664.2"/>
  472. <line class="st11" x1="399.7" y1="664.2" x2="399.7" y2="660.3"/>
  473. <line class="st11" x1="422.1" y1="664.2" x2="422.1" y2="660.3"/>
  474. </g>
  475. <line class="st11" x1="444.6" y1="660.3" x2="444.6" y2="664.2"/>
  476. <line class="st11" x1="455.8" y1="664.2" x2="455.8" y2="660.3"/>
  477. <g>
  478. <g>
  479. <text transform="matrix(1 0 0 1 206.3477 668.2256)" class="st7 st12">2</text>
  480. </g>
  481. </g>
  482. <g>
  483. <g>
  484. <text transform="matrix(1 0 0 1 262.458 668.2256)" class="st7 st12">1</text>
  485. </g>
  486. </g>
  487. <g>
  488. <g>
  489. <text transform="matrix(1 0 0 1 318.5684 668.2256)" class="st7 st12">0</text>
  490. </g>
  491. </g>
  492. <g>
  493. <g>
  494. <text transform="matrix(1 0 0 1 374.6782 668.2256)" class="st7 st12">1</text>
  495. </g>
  496. </g>
  497. <g>
  498. <g>
  499. <text transform="matrix(1 0 0 1 430.7886 668.2256)" class="st7 st12">2</text>
  500. </g>
  501. </g>
  502. <line class="st10" x1="462" y1="552" x2="180.9" y2="552"/>
  503. <line class="st10" x1="461.7" y1="608.1" x2="180.5" y2="608.1"/>
  504. </g>
  505. <g>
  506. <text transform="matrix(1 0 0 1 85.1948 419.1709)" class="st15 st16">b </text>
  507. <text transform="matrix(1 0 0 1 95.5503 419.1709)" class="st7 st16">-1</text>
  508. <text transform="matrix(1 0 0 1 106.2397 419.1709)" class="st7 st16">1.04 mm</text>
  509. </g>
  510. <g>
  511. <text transform="matrix(1 0 0 1 81.354 189.5444)" class="st15 st16">b </text>
  512. <text transform="matrix(1 0 0 1 91.7095 189.5444)" class="st7 st16">-10.56 mm</text>
  513. </g>
  514. <g>
  515. <text transform="matrix(1 0 0 1 90.2686 662.5156)" class="st15 st16">b </text>
  516. <text transform="matrix(1 0 0 1 100.624 662.5156)" class="st7 st16">-1</text>
  517. <text transform="matrix(1 0 0 1 111.3135 662.5156)" class="st7 st16">1.52 mm</text>
  518. </g>
  519. <g>
  520. <g>
  521. <defs>
  522. <path id="SVGID_1_" d="M307.2,377.7c-8.1-3.7-50.7,9.1-54.5,10c-4,1-34.5,12.5-37.4,9.2c-10.5-12.3,18.3-19.5,23.5-27.8
  523. c3.1-4.8,65.1-35.1,68.5-35.1c4,0,61.3,29.8,65.3,35.1c4.8,6.3,33.6,21,26.9,28.2c-3.8,4-31.3-4.4-36.8-8.1
  524. C358.3,386.2,315.3,374,307.2,377.7z"/>
  525. </defs>
  526. <use xlink:href="#SVGID_1_" style="overflow:visible;fill-rule:evenodd;clip-rule:evenodd;fill:#C1DFC4;"/>
  527. <clipPath id="SVGID_2_">
  528. <use xlink:href="#SVGID_1_" style="overflow:visible;"/>
  529. </clipPath>
  530. <g class="st17">
  531. <path class="st18" d="M311,402.7c0,0,0-5.1,0-9c0-3.9-0.2-18.8-0.2-20.4c0-1.6-0.2-6.9,1.8-6.9c2.1,0,12.6-0.7,23.6,3.7
  532. c11,4.4,20.4,6.2,23.4,17"/>
  533. <path class="st19" d="M310.9,401.3c0-2.5-0.8-12.6,6.3-12.3c5,0.2,18.1-2.5,22-2.8c5-0.3,15.5-0.9,20.4,0.9
  534. c5.7,2.1,17.2,11.5,19.5,18.3"/>
  535. <path class="st20" d="M448,311.9c-5.7-0.8-21.1-1.9-26.6-1.7c-5.5,0.2-10.6,0.9-14.9,3.4c-4.4,2.5-16.1,9.6-17.9,17.2
  536. c-1.8,7.6,0,18.8,1.4,23.2c1.4,4.4,2.5,9.6,3.7,12.4c1.1,2.8,3.9,12.2,13.3,14.2c9.4,2.1,13.3-0.7,20.4-3.9
  537. c7.1-3.2,16.6-8.1,20.2-10.4"/>
  538. <path class="st18" d="M303.6,402.7c0,0,0-5.1,0-9c0-3.9,0.2-18.8,0.2-20.4c0-1.6,0.2-6.9-1.8-6.9c-2.1,0-12.6-0.7-23.6,3.7
  539. c-11,4.4-20.4,6.2-23.4,17"/>
  540. <path class="st19" d="M303.6,401.3c0-2.5,0.4-12.1-6.1-12.3c-5-0.1-18.1-2.5-22-2.8c-5-0.3-15.5-0.9-20.4,0.9
  541. c-5.7,2.1-17.2,11.5-19.5,18.3"/>
  542. <path class="st20" d="M166.5,310.4c5.7-0.8,21.2-0.4,26.7-0.2c5.5,0.2,10.6,0.9,14.9,3.4c4.4,2.5,16.1,9.6,17.9,17.2
  543. c1.8,7.6,0,18.8-1.4,23.2c-1.4,4.4-2.5,9.6-3.7,12.4c-1.1,2.8-3.9,12.2-13.3,14.2c-9.4,2.1-13.3-0.7-20.4-3.9
  544. c-7.1-3.2-16.3-7.1-19.8-9.4"/>
  545. <path class="st21" d="M448.1,375.4l-4.9,2.6c-14.9,7.8-22.9,11.2-28.2,12.6c-5.3,1.4-12.4,5.5-16.3,6.9
  546. c-3.9,1.4-12.6,2.5-14.9,3.4c-2.3,0.9-4.1,4.8-7.3,7.1c-3.2,2.3-21.8,5.4-38.3,6.7c-9.2,0.7-19.7-4.4-22.5-6.9
  547. c-2.8-2.5-5-6.9-8.3-6.9c-3.3,0-5.5,4.4-8.3,6.9c-2.8,2.5-13.3,7.6-22.5,6.9c-16.5-1.2-35.1-4.4-38.3-6.7c-3.2-2.3-5-6.2-7.3-7.1
  548. c-2.3-0.9-11-2.1-14.9-3.4c-3.9-1.4-11-5.5-16.3-6.9c-5.3-1.4-13.3-4.8-28.2-12.6l-5.2-2.7"/>
  549. <path class="st22" d="M350.4,370.2c1.7-0.5,7.9-0.1,10.7,1.7c2.8,1.8,9.4,7.5,12.2,9.4c2.8,1.9,6.7,4.6,10.1,7.3
  550. c3.4,2.8,7.9,6.9,10.3,6.4c3.2-0.7,6.7-5.5,7.8-7.1c1.1-1.6,2.8-6.2,0.7-9.2"/>
  551. <path class="st22" d="M348.7,350.8c3.8-3.6,18.7-15.5,40.5-21.7"/>
  552. <path class="st23" d="M366.1,376c-1.1-0.9-3-3.4-1.2-5.2c1.8-1.8,5.7-0.9,9.2,2.1c3.4,3,6.9,9,1.6,10.1"/>
  553. <path class="st23" d="M374.1,372.9c1.8-2.3,12.2-9,17.7-11"/>
  554. <path class="st22" d="M255.9,371c14.2-41.1,46.4-44.9,51.4-44.9c5,0,37.2,3.8,51.4,44.9"/>
  555. <path class="st22" d="M260.3,378.8c7.3-24.1,41.3-32.7,47-32.7c5.7,0,39.7,8.6,47,32.7"/>
  556. <path class="st22" d="M264.3,370.2c-1.7-0.5-7.9-0.1-10.7,1.7c-2.8,1.8-9.4,7.5-12.2,9.4c-2.8,1.9-6.7,4.6-10.1,7.3
  557. s-7.9,6.9-10.3,6.4c-3.2-0.7-6.7-5.5-7.8-7.1c-1.1-1.6-2.8-6.2-0.7-9.2"/>
  558. <path class="st22" d="M265.9,350.8c-3.8-3.6-18.7-15.5-40.5-21.7"/>
  559. <path class="st22" d="M248.5,376c1.1-0.9,3-3.4,1.2-5.2c-1.8-1.8-5.7-0.9-9.2,2.1c-3.4,3-6.9,9-1.6,10.1"/>
  560. <path class="st22" d="M240.5,372.9c-1.8-2.3-12.2-9-17.7-11"/>
  561. <path class="st23" d="M303.7,369.2c0-4.1,1.8-6,3.6-6c1.8,0,3.6,1.8,3.6,6"/>
  562. <line class="st24" x1="307.3" y1="378.3" x2="317.4" y2="391.2"/>
  563. <line class="st24" x1="370.8" y1="375.1" x2="372" y2="366.9"/>
  564. <g>
  565. <text transform="matrix(1 0 0 1 308.2109 337.8745)" class="st25 st7 st8">GiA</text>
  566. </g>
  567. <g>
  568. <text transform="matrix(1 0 0 1 312.2646 359.4116)" class="st25 st7 st8">RMg</text>
  569. </g>
  570. <g>
  571. <text transform="matrix(1 0 0 1 327.9717 381.0229)" class="st25 st7 st8">ml</text>
  572. </g>
  573. <g>
  574. <text transform="matrix(1 0 0 1 343.0693 401.9131)" class="st25 st7 st8">p</text>
  575. <text transform="matrix(1 0 0 1 347.9902 401.9131)" class="st25 st7 st8">y</text>
  576. </g>
  577. <g>
  578. <text transform="matrix(1 0 0 1 358.6411 352.4351)" class="st25 st7 st8">LPGiA</text>
  579. </g>
  580. <g>
  581. <text transform="matrix(1 0 0 1 380.5591 385.1597)" class="st25 st7 st8">LPGiE</text>
  582. </g>
  583. <g>
  584. <text transform="matrix(1 0 0 1 314.8828 400.3384)" class="st25 st7 st8">RP</text>
  585. <text transform="matrix(1 0 0 1 326.9985 400.3384)" class="st25 st7 st8">a</text>
  586. </g>
  587. <g>
  588. <text transform="matrix(1 0 0 1 371.3765 366.292)" class="st25 st7 st8">PP</text>
  589. <text transform="matrix(1 0 0 1 383.2705 366.292)" class="st25 st7 st8">y</text>
  590. </g>
  591. <g>
  592. <g>
  593. <polygon class="st26" points="167,281.4 447.8,281.4 447.8,421.4 167,421.4 167,281.4 "/>
  594. <path class="st26" d="M307.4,351.4"/>
  595. </g>
  596. <line class="st27" x1="194.7" y1="281.2" x2="194.7" y2="421.8"/>
  597. <line class="st27" x1="250.8" y1="281.1" x2="250.8" y2="421.8"/>
  598. <line class="st27" x1="306.9" y1="280.9" x2="306.9" y2="421.8"/>
  599. <line class="st27" x1="363" y1="281.1" x2="363" y2="421.8"/>
  600. <line class="st27" x1="419.2" y1="281.1" x2="419.2" y2="421.8"/>
  601. <line class="st28" x1="172.3" y1="417.9" x2="172.3" y2="421.8"/>
  602. <line class="st28" x1="183.5" y1="421.8" x2="183.5" y2="417.9"/>
  603. <g>
  604. <line class="st28" x1="205.9" y1="417.9" x2="205.9" y2="421.8"/>
  605. <line class="st28" x1="228.4" y1="417.9" x2="228.4" y2="421.8"/>
  606. <line class="st28" x1="217.2" y1="421.8" x2="217.2" y2="417.9"/>
  607. <line class="st28" x1="239.6" y1="421.8" x2="239.6" y2="417.9"/>
  608. </g>
  609. <g>
  610. <line class="st28" x1="262" y1="417.9" x2="262" y2="421.8"/>
  611. <line class="st28" x1="284.5" y1="417.9" x2="284.5" y2="421.8"/>
  612. <line class="st28" x1="273.3" y1="421.8" x2="273.3" y2="417.9"/>
  613. <line class="st28" x1="295.7" y1="421.8" x2="295.7" y2="417.9"/>
  614. </g>
  615. <g>
  616. <line class="st28" x1="318.2" y1="417.9" x2="318.2" y2="421.8"/>
  617. <line class="st28" x1="340.6" y1="417.9" x2="340.6" y2="421.8"/>
  618. <line class="st28" x1="329.4" y1="421.8" x2="329.4" y2="417.9"/>
  619. <line class="st28" x1="351.8" y1="421.8" x2="351.8" y2="417.9"/>
  620. </g>
  621. <g>
  622. <line class="st28" x1="374.3" y1="417.9" x2="374.3" y2="421.8"/>
  623. <line class="st28" x1="396.7" y1="417.9" x2="396.7" y2="421.8"/>
  624. <line class="st28" x1="385.5" y1="421.8" x2="385.5" y2="417.9"/>
  625. <line class="st28" x1="407.9" y1="421.8" x2="407.9" y2="417.9"/>
  626. </g>
  627. <line class="st28" x1="430.4" y1="417.9" x2="430.4" y2="421.8"/>
  628. <line class="st28" x1="441.6" y1="421.8" x2="441.6" y2="417.9"/>
  629. <g>
  630. <g>
  631. <text transform="matrix(1 0 0 1 192.1357 425.7881)" class="st25 st7 st12">2</text>
  632. </g>
  633. </g>
  634. <g>
  635. <g>
  636. <text transform="matrix(1 0 0 1 248.2461 425.7881)" class="st25 st7 st12">1</text>
  637. </g>
  638. </g>
  639. <g>
  640. <g>
  641. <text transform="matrix(1 0 0 1 304.3564 425.7881)" class="st25 st7 st12">0</text>
  642. </g>
  643. </g>
  644. <g>
  645. <g>
  646. <text transform="matrix(1 0 0 1 360.4668 425.7881)" class="st25 st7 st12">1</text>
  647. </g>
  648. </g>
  649. <g>
  650. <g>
  651. <text transform="matrix(1 0 0 1 416.5771 425.7881)" class="st25 st7 st12">2</text>
  652. </g>
  653. </g>
  654. <line class="st27" x1="447.8" y1="309.6" x2="166.7" y2="309.6"/>
  655. <line class="st27" x1="447.5" y1="365.7" x2="166.3" y2="365.7"/>
  656. </g>
  657. </g>
  658. <use xlink:href="#SVGID_1_" style="overflow:visible;fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#009640;stroke-miterlimit:3.8637;"/>
  659. </g>
  660. </g>
  661. <g>
  662. <g>
  663. <defs>
  664. <path id="SVGID_3_" d="M321.1,626.9c-8.1-3.7-47.2,0.1-51,1.1c-4,1-34.3,25-37.2,21.6c-10.5-12.3,1.3-30.1,6.6-38.3
  665. c5.5-8.5,18.3-3.2,31.5-7.5c21.1-7,28.1-24.3,50.1-24c23.5,0.3,28.8,14.4,50.9,23.3c18.3,7.4,21.5,1.6,32.5,8.5
  666. c6.7,4.2,20.2,29.6,8.2,37.1c-4.7,2.9-30.5-16.5-36-20.2C372.3,625.4,329.3,623.2,321.1,626.9z"/>
  667. </defs>
  668. <use xlink:href="#SVGID_3_" style="overflow:visible;fill-rule:evenodd;clip-rule:evenodd;fill:#EBF5EC;"/>
  669. <clipPath id="SVGID_4_">
  670. <use xlink:href="#SVGID_3_" style="overflow:visible;"/>
  671. </clipPath>
  672. <g class="st29">
  673. <path class="st30" d="M324.2,635.9c0.8-2.8,3.7-6.3,7.4-6.5c3.7-0.2,31.4,1.8,39.2,4.8c7.8,3,12.4,5.5,15.1,8.7
  674. c2.8,3.2,8.5,6.7,4.6,10.6"/>
  675. <path class="st31" d="M326.3,632.1c-1.2-3.2-2.5-18.6,0.2-20c2.8-1.4,9-0.5,12.9,0.7c3.9,1.1,17,7.3,20.9,9.6
  676. c3.9,2.3,8.3,4.1,10.6,11.7"/>
  677. <path class="st32" d="M462.2,561.4c-2.5-2.1-2.8-4.3-14.9-3.6c-12.2,0.7-25,3-34.7,16.5c-9.6,13.5-10.8,28.5-8.5,36.3
  678. c2.3,7.8,7.3,11.5,13.5,14c6.2,2.5,19,2.1,28.2-1.1c9.2-3.2,9-2.3,16.3-8.9"/>
  679. <path class="st30" d="M319.3,635.9c-0.8-2.8-3.7-6.3-7.4-6.5c-3.7-0.2-31.4,1.8-39.2,4.8c-7.8,3-12.4,5.5-15.1,8.7
  680. c-2.8,3.2-8.5,6.7-4.6,10.6"/>
  681. <path class="st31" d="M317.1,632.1c1.2-3.2,2.5-18.6-0.2-20c-2.8-1.4-9-0.5-12.9,0.7c-3.9,1.1-17,7.3-20.9,9.6
  682. c-3.9,2.3-8.3,4.1-10.6,11.7"/>
  683. <path class="st32" d="M181.2,560.7c2.5-2.1,2.9-3.7,15-3c12.2,0.7,25,3,34.7,16.5c9.6,13.5,10.8,28.5,8.5,36.3
  684. c-2.3,7.8-7.3,11.5-13.5,14c-6.2,2.5-19,2.1-28.2-1.1c-9.2-3.2-9.1-2.9-16.4-9.6"/>
  685. <path class="st33" d="M462.2,626.2c-4.8,3-1.8,1.8-15.4,6c-3.3,1-6,3.7-9,4.8c-9.2,3.6-16.9,6-19.3,7.6c-3.2,2.1-5.7,4.1-8.5,5.3
  686. c-2.8,1.1-5,2.5-19.5,3.7c-14.5,1.1-32.1,2.1-34.9,2.5c-2.8,0.5-9.9,2.5-15.8-0.7c-6-3.2-13.8-9.2-14-11.7
  687. c-0.2-2.5,0.2-8.7-4.1-8.7c-4.4,0-3.9,6.2-4.1,8.7c-0.2,2.5-8,8.5-14,11.7c-6,3.2-13.1,1.1-15.8,0.7c-2.8-0.5-20.4-1.4-34.9-2.5
  688. c-14.5-1.1-16.8-2.5-19.5-3.7c-2.8-1.1-5.3-3.2-8.5-5.3c-2.4-1.6-10.1-4-19.3-7.6c-3-1.2-5.6-3.8-9-4.8c-13.5-4.1-10.1-3-14.9-6"
  689. />
  690. <path class="st34" d="M352.3,584.1c9.8-5.9,30.5-13.5,56.7-5"/>
  691. <path class="st34" d="M380.8,614.2c4.9-0.4,17.3-0.8,23.5-2.9"/>
  692. <path class="st34" d="M376.6,619.3c5.8,4.5,30.5,44.4,40.4,4.9"/>
  693. <path class="st34" d="M277.2,626.4c-0.2-5,5.3-15.6,8.9-18.6c3.7-3,10.8-7.1,18.1-10.8c7.3-3.7,12.6-7.1,17.4-7.1
  694. c4.8,0,10.1,3.4,17.4,7.1c7.3,3.7,14.5,7.8,18.1,10.8c3.7,3,9.1,13.6,8.9,18.6"/>
  695. <path class="st34" d="M317.6,612.9c0-3.9,2.6-5.1,4.2-5.1c1.6,0,4.2,1.2,4.2,5.1"/>
  696. <path class="st34" d="M273.3,609c21-39.5,44.5-39,48.4-39c3.9,0,27.4-0.5,48.4,39"/>
  697. <path class="st34" d="M291.2,584.1c-9.8-5.9-30.5-13.5-56.7-5"/>
  698. <path class="st34" d="M282,613.2c0.1-2.6-2.7-5.1-10.3-4c-3,0.5-9.9,2.8-9.4,6.9c0.5,4.1,6.2,3.4,9.9,2.8c2.8-0.5,6.9-2,8.8-3.7"
  699. />
  700. <path class="st34" d="M262.6,614.2c-4.9-0.4-17.3-0.8-23.5-2.9"/>
  701. <path class="st34" d="M266.9,619.3c-5.8,4.5-30.5,44.4-40.4,4.9"/>
  702. <path class="st34" d="M361.5,613.2c-0.1-2.6,2.7-5.1,10.3-4c3,0.5,9.9,2.8,9.4,6.9c-0.5,4.1-6.2,3.4-9.9,2.8
  703. c-2.8-0.5-6.9-2-8.8-3.7"/>
  704. <line class="st35" x1="329.7" y1="632.7" x2="321.9" y2="618.1"/>
  705. <line class="st35" x1="372.9" y1="614.3" x2="383.4" y2="608.4"/>
  706. <g>
  707. <text transform="matrix(1 0 0 1 325.3682 583.7339)" class="st36 st7 st8">GiA</text>
  708. </g>
  709. <g>
  710. <text transform="matrix(1 0 0 1 326.6782 604.2749)" class="st36 st7 st8">RMg</text>
  711. </g>
  712. <g>
  713. <text transform="matrix(1 0 0 1 331.3364 624.4321)" class="st36 st7 st8">ml</text>
  714. </g>
  715. <g>
  716. <text transform="matrix(1 0 0 1 350.6479 646.1587)" class="st36 st7 st8">p</text>
  717. <text transform="matrix(1 0 0 1 355.5688 646.1587)" class="st36 st7 st8">y</text>
  718. </g>
  719. <g>
  720. <text transform="matrix(1 0 0 1 328.978 641.6011)" class="st36 st7 st8">RP</text>
  721. <text transform="matrix(1 0 0 1 341.0938 641.6011)" class="st36 st7 st8">a</text>
  722. </g>
  723. <g>
  724. <text transform="matrix(1 0 0 1 383.0928 607.6509)" class="st36 st7 st8">PP</text>
  725. <text transform="matrix(1 0 0 1 394.9868 607.6509)" class="st36 st7 st8">y</text>
  726. </g>
  727. <g>
  728. <text transform="matrix(1 0 0 1 370.4707 592.8467)" class="st36 st7 st8">LPGiA</text>
  729. </g>
  730. <g>
  731. <text transform="matrix(1 0 0 1 389.4536 628.563)" class="st36 st7 st8">LPGiE</text>
  732. </g>
  733. <g>
  734. <g>
  735. <polygon class="st37" points="181.2,523.8 462,523.8 462,663.8 181.2,663.8 181.2,523.8 "/>
  736. <path class="st37" d="M321.6,593.8"/>
  737. </g>
  738. <line class="st38" x1="208.9" y1="523.7" x2="208.9" y2="664.2"/>
  739. <line class="st38" x1="265" y1="523.5" x2="265" y2="664.2"/>
  740. <line class="st38" x1="321.1" y1="523.3" x2="321.2" y2="664.2"/>
  741. <line class="st38" x1="377.3" y1="523.5" x2="377.3" y2="664.2"/>
  742. <line class="st38" x1="433.4" y1="523.5" x2="433.4" y2="664.2"/>
  743. <line class="st39" x1="186.5" y1="660.3" x2="186.5" y2="664.2"/>
  744. <line class="st39" x1="197.7" y1="664.2" x2="197.7" y2="660.3"/>
  745. <g>
  746. <line class="st39" x1="220.2" y1="660.3" x2="220.2" y2="664.2"/>
  747. <line class="st39" x1="242.6" y1="660.3" x2="242.6" y2="664.2"/>
  748. <line class="st39" x1="231.4" y1="664.2" x2="231.4" y2="660.3"/>
  749. <line class="st39" x1="253.8" y1="664.2" x2="253.8" y2="660.3"/>
  750. </g>
  751. <g>
  752. <line class="st39" x1="276.3" y1="660.3" x2="276.3" y2="664.2"/>
  753. <line class="st39" x1="298.7" y1="660.3" x2="298.7" y2="664.2"/>
  754. <line class="st39" x1="287.5" y1="664.2" x2="287.5" y2="660.3"/>
  755. <line class="st39" x1="309.9" y1="664.2" x2="309.9" y2="660.3"/>
  756. </g>
  757. <g>
  758. <line class="st39" x1="332.4" y1="660.3" x2="332.4" y2="664.2"/>
  759. <line class="st39" x1="354.8" y1="660.3" x2="354.8" y2="664.2"/>
  760. <line class="st39" x1="343.6" y1="664.2" x2="343.6" y2="660.3"/>
  761. <line class="st39" x1="366" y1="664.2" x2="366" y2="660.3"/>
  762. </g>
  763. <g>
  764. <line class="st39" x1="388.5" y1="660.3" x2="388.5" y2="664.2"/>
  765. <line class="st39" x1="410.9" y1="660.3" x2="410.9" y2="664.2"/>
  766. <line class="st39" x1="399.7" y1="664.2" x2="399.7" y2="660.3"/>
  767. <line class="st39" x1="422.1" y1="664.2" x2="422.1" y2="660.3"/>
  768. </g>
  769. <line class="st39" x1="444.6" y1="660.3" x2="444.6" y2="664.2"/>
  770. <line class="st39" x1="455.8" y1="664.2" x2="455.8" y2="660.3"/>
  771. <g>
  772. <g>
  773. <text transform="matrix(1 0 0 1 206.3477 668.2256)" class="st36 st7 st12">2</text>
  774. </g>
  775. </g>
  776. <g>
  777. <g>
  778. <text transform="matrix(1 0 0 1 262.458 668.2256)" class="st36 st7 st12">1</text>
  779. </g>
  780. </g>
  781. <g>
  782. <g>
  783. <text transform="matrix(1 0 0 1 318.5684 668.2256)" class="st36 st7 st12">0</text>
  784. </g>
  785. </g>
  786. <g>
  787. <g>
  788. <text transform="matrix(1 0 0 1 374.6782 668.2256)" class="st36 st7 st12">1</text>
  789. </g>
  790. </g>
  791. <g>
  792. <g>
  793. <text transform="matrix(1 0 0 1 430.7886 668.2256)" class="st36 st7 st12">2</text>
  794. </g>
  795. </g>
  796. <line class="st38" x1="462" y1="552" x2="180.9" y2="552"/>
  797. <line class="st38" x1="461.7" y1="608.1" x2="180.5" y2="608.1"/>
  798. </g>
  799. </g>
  800. <use xlink:href="#SVGID_3_" style="overflow:visible;fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#009640;stroke-width:1.0001;stroke-miterlimit:3.8637;stroke-dasharray:2.8346,1.4173;"/>
  801. </g>
  802. </g>
  803. <g>
  804. <g>
  805. <defs>
  806. <path id="SVGID_5_" d="M308.1,150.7c-8.1-3.7-42,3.3-45.8,4.3c-4,1-20.1,10.4-23,7c-10.5-12.3-7.6-16.3-2.3-24.6
  807. c3.1-4.8,31.2-15.7,44.5-18.1c3.1-0.6,23.4-6.8,26.8-6.8c4,0,21.8,6.4,26.9,7.6c18.8,4.3,40.5,11.3,44.5,16.6
  808. c4.8,6.3,4.4,19.1-2.4,26.3c-3.8,4-18-4.7-23.5-8.4C349.5,151.5,316.2,147,308.1,150.7z"/>
  809. </defs>
  810. <use xlink:href="#SVGID_5_" style="overflow:visible;fill-rule:evenodd;clip-rule:evenodd;fill:#C1DFC4;"/>
  811. <clipPath id="SVGID_6_">
  812. <use xlink:href="#SVGID_5_" style="overflow:visible;"/>
  813. </clipPath>
  814. <g class="st40">
  815. <g>
  816. <path class="st41" d="M449.5,147.6c-21.5,15-63.9,29.1-72.1,27.4c0,0-11.1,9.1-27.2,10c-16.1,0.9-36-9.1-37.8-11.1
  817. c-1.8-2.1-2.2-4.1-4.3-4.1c-2.1,0-2.5,2-4.3,4.1c-1.8,2.1-21.7,12-37.8,11.1c-16.1-0.9-27.2-10-27.2-10
  818. c-8.2,1.8-50.1-11.2-70.8-26.9"/>
  819. <path class="st21" d="M449.5,147.6c-21.5,15-63.9,29.1-72.1,27.4c0,0-11.1,9.1-27.2,10c-16.1,0.9-36-9.1-37.8-11.1
  820. c-1.8-2.1-2.2-4.1-4.3-4.1c-2.1,0-2.5,2-4.3,4.1c-1.8,2.1-21.7,12-37.8,11.1c-16.1-0.9-27.2-10-27.2-10
  821. c-8.2,1.8-50.1-11.2-70.8-26.9"/>
  822. </g>
  823. <path class="st19" d="M308.1,169.7c0-1.8,0.2-9.1,4-9.1c3.8,0,7.3,0.3,11.7,0.3s11.4-2.3,13.8-4.1c2.3-1.8,7.3-3.5,10.3-2.9
  824. c2.9,0.6,4.4,0.4,7.3,2.1c2.9,1.8,22.9,16.3,22.3,19"/>
  825. <path class="st22" d="M311.2,135.4c0,0,6.4,0.9,10,2.1c3.5,1.2,13.5,6.2,16.4,7.3c2.9,1.2,12.3,6.8,17.6,11.2"/>
  826. <path class="st22" d="M427.6,87.3c-7.7-1.7-17.6-1.4-22.9,1.5c-5.3,2.9-16.1,11.1-19,16.7c-2.9,5.6-5,20.8-2.6,25.5
  827. c2.3,4.7,8.8,12,15.2,10c6.4-2.1,10.1-5.7,15.8-9.2"/>
  828. <path class="st19" d="M308.1,169.7c0-1.8-0.2-9.1-4-9.1c-3.8,0-7.3,0.3-11.7,0.3c-4.4,0-11.4-2.3-13.8-4.1
  829. c-2.3-1.8-7.3-3.5-10.3-2.9c-2.9,0.6-4.4,0.4-7.3,2.1c-2.9,1.8-22.9,16.3-22.3,19"/>
  830. <path class="st22" d="M305,135.4c0,0-6.4,0.9-10,2c-3.5,1.2-13.5,6.2-16.4,7.3c-2.9,1.2-12.3,6.8-17.6,11.2"/>
  831. <path class="st22" d="M188.7,87.3c7.7-1.7,17.6-1.4,22.9,1.5c5.3,2.9,16.1,11.1,19,16.7c2.9,5.6,5,20.8,2.6,25.5
  832. c-2.3,4.7-8.8,12-15.2,10c-6.4-2.1-10.1-5.7-15.8-9.2"/>
  833. <path class="st22" d="M348.1,134.8c4.7-0.9,14.2,5.5,18,10.8c3.8,5.3,13.7,14.1,11,26.1"/>
  834. <path class="st22" d="M396.5,141.5c-4.1,0-17.6,0.3-18.5,7.1c-0.9,6.7,3.4,13.7,12.9,12.3"/>
  835. <path class="st22" d="M334.2,115.3c3.9-2.5,24.2-9.2,27.4-9.8c3.2-0.6,20.5-0.3,24,0"/>
  836. <path class="st22" d="M355.6,136.7c3.8-1.7,19.6-7.2,26.3-8.1"/>
  837. <path class="st22" d="M261.1,156c1.8-4.4,5.6-15.6,7-21.2c1.5-5.6,5-10.8,7.3-13.5c2.3-2.6,10.5-9.4,16.7-14.4
  838. c6.2-5,10.8-7.6,16-7.6s10.5,1.5,16.7,6.5c6.2,5,13.7,12.8,16,15.5c2.3,2.6,5.9,7.9,7.3,13.5c1.5,5.6,5.3,16.8,7,21.2"/>
  839. <path class="st22" d="M265.1,144.4c6.7-7.2,23.5-18.1,28.5-21.6c5-3.5,12.4-5.5,15.8-5.5c3.4,0,10.4,1.3,15.4,4.9
  840. c5,3.5,19.7,15.1,26.3,22.3"/>
  841. <path class="st23" d="M305,135.4c0-1.2,2.3-2.1,3.1-2.1s3.1,0.9,3.1,2.1"/>
  842. <path class="st22" d="M268.1,134.8c-4.7-0.9-13.2,1.2-17,6.4c-3.8,5.3-14.6,18.4-12,30.4"/>
  843. <path class="st22" d="M224.8,140.1c4.1,0,12.6,1.8,13.4,8.5c0.9,6.7-3.4,13.7-12.9,12.3"/>
  844. <path class="st22" d="M282,115.3c-3.9-2.5-24.2-9.2-27.4-9.8c-3.2-0.6-20.5-0.3-24,0"/>
  845. <path class="st22" d="M256.1,137.1c-3.8-1.7-16.1-5.2-22.8-6.1"/>
  846. <path class="st22" d="M309.6,162.1c0.7-4,1.9-10.3,1.9-14.1c0-3.8-0.3-12.6-0.3-12.6"/>
  847. <path class="st22" d="M306.6,162.1c-0.7-4-1.9-10.3-1.9-14.1c0-3.8,0.3-12.6,0.3-12.6"/>
  848. <g>
  849. <g>
  850. <polygon class="st26" points="168.3,52.8 449.2,52.8 449.2,192.8 168.3,192.8 168.3,52.8 "/>
  851. <path class="st26" d="M308.7,122.8"/>
  852. </g>
  853. <line class="st27" x1="196.1" y1="52.7" x2="196.1" y2="193.2"/>
  854. <line class="st27" x1="252.2" y1="52.5" x2="252.2" y2="193.2"/>
  855. <line class="st27" x1="308.3" y1="52.3" x2="308.3" y2="193.2"/>
  856. <line class="st27" x1="364.4" y1="52.5" x2="364.4" y2="193.2"/>
  857. <line class="st27" x1="420.5" y1="52.5" x2="420.5" y2="193.2"/>
  858. <line class="st28" x1="173.6" y1="189.3" x2="173.6" y2="193.2"/>
  859. <line class="st28" x1="184.8" y1="193.2" x2="184.8" y2="189.3"/>
  860. <g>
  861. <line class="st28" x1="207.3" y1="189.3" x2="207.3" y2="193.2"/>
  862. <line class="st28" x1="229.7" y1="189.3" x2="229.7" y2="193.2"/>
  863. <line class="st28" x1="218.5" y1="193.2" x2="218.5" y2="189.3"/>
  864. <line class="st28" x1="241" y1="193.2" x2="241" y2="189.3"/>
  865. </g>
  866. <g>
  867. <line class="st28" x1="263.4" y1="189.3" x2="263.4" y2="193.2"/>
  868. <line class="st28" x1="285.8" y1="189.3" x2="285.8" y2="193.2"/>
  869. <line class="st28" x1="274.6" y1="193.2" x2="274.6" y2="189.3"/>
  870. <line class="st28" x1="297.1" y1="193.2" x2="297.1" y2="189.3"/>
  871. </g>
  872. <g>
  873. <line class="st28" x1="319.5" y1="189.3" x2="319.5" y2="193.2"/>
  874. <line class="st28" x1="341.9" y1="189.3" x2="341.9" y2="193.2"/>
  875. <line class="st28" x1="330.7" y1="193.2" x2="330.7" y2="189.3"/>
  876. <line class="st28" x1="353.2" y1="193.2" x2="353.2" y2="189.3"/>
  877. </g>
  878. <g>
  879. <line class="st28" x1="375.6" y1="189.3" x2="375.6" y2="193.2"/>
  880. <line class="st28" x1="398.1" y1="189.3" x2="398.1" y2="193.2"/>
  881. <line class="st28" x1="386.8" y1="193.2" x2="386.8" y2="189.3"/>
  882. <line class="st28" x1="409.3" y1="193.2" x2="409.3" y2="189.3"/>
  883. </g>
  884. <line class="st28" x1="431.7" y1="189.3" x2="431.7" y2="193.2"/>
  885. <line class="st28" x1="442.9" y1="193.2" x2="442.9" y2="189.3"/>
  886. <g>
  887. <g>
  888. <text transform="matrix(1 0 0 1 193.4785 197.2202)" class="st25 st7 st12">2</text>
  889. </g>
  890. </g>
  891. <g>
  892. <g>
  893. <text transform="matrix(1 0 0 1 249.5889 197.2202)" class="st25 st7 st12">1</text>
  894. </g>
  895. </g>
  896. <g>
  897. <g>
  898. <text transform="matrix(1 0 0 1 305.6992 197.2202)" class="st25 st7 st12">0</text>
  899. </g>
  900. </g>
  901. <g>
  902. <g>
  903. <text transform="matrix(1 0 0 1 361.8091 197.2202)" class="st25 st7 st12">1</text>
  904. </g>
  905. </g>
  906. <g>
  907. <g>
  908. <text transform="matrix(1 0 0 1 417.9194 197.2202)" class="st25 st7 st12">2</text>
  909. </g>
  910. </g>
  911. <line class="st27" x1="449.2" y1="81" x2="168" y2="81"/>
  912. <line class="st27" x1="448.9" y1="137.1" x2="167.7" y2="137.1"/>
  913. </g>
  914. <line class="st24" x1="308.1" y1="143" x2="314.5" y2="143"/>
  915. <g>
  916. <text transform="matrix(1 0 0 1 310.6899 115.5735)" class="st25 st7 st8">GiA</text>
  917. </g>
  918. <g>
  919. <text transform="matrix(1 0 0 1 312.8413 132.0608)" class="st25 st7 st8">RMg</text>
  920. </g>
  921. <g>
  922. <text transform="matrix(1 0 0 1 319.2192 156.1106)" class="st25 st7 st8">ml</text>
  923. </g>
  924. <g>
  925. <text transform="matrix(1 0 0 1 349.917 123.1638)" class="st25 st7 st8">LPGiA</text>
  926. </g>
  927. <g>
  928. <text transform="matrix(1 0 0 1 384.7192 152.4253)" class="st25 st7 st8">CPO</text>
  929. </g>
  930. <g>
  931. <text transform="matrix(1 0 0 1 364.0928 141.8142)" class="st25 st7 st8">LPGiE</text>
  932. </g>
  933. <g>
  934. <text transform="matrix(1 0 0 1 310.3486 146.3416)" class="st25 st7 st8">RP</text>
  935. <text transform="matrix(1 0 0 1 322.4644 146.3416)" class="st25 st7 st8">a</text>
  936. </g>
  937. </g>
  938. <use xlink:href="#SVGID_5_" style="overflow:visible;fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#009640;stroke-miterlimit:3.8637;"/>
  939. </g>
  940. </g>
  941. <g>
  942. <polygon class="st42" points="545.1,479 545.1,470.5 553.6,470.5 553.6,479 545.1,479 "/>
  943. <path class="st42" d="M549.3,474.8"/>
  944. </g>
  945. <g>
  946. <ellipse class="st42" cx="551.1" cy="533.3" rx="4.7" ry="4.6"/>
  947. <path class="st42" d="M551.1,533.3"/>
  948. </g>
  949. <g>
  950. <text transform="matrix(1 0 0 1 558.2603 465.2075)" class="st7 st43">Activés</text>
  951. </g>
  952. <g>
  953. <text transform="matrix(1 0 0 1 559.147 490.2383)" class="st7 st43">Inhibés</text>
  954. </g>
  955. <g>
  956. <text transform="matrix(1 0 0 1 558.6943 477.4404)" class="st7 st43">Neutre</text>
  957. </g>
  958. <g>
  959. <text transform="matrix(1 0 0 1 561.6479 521.3408)" class="st7 st43">5-HT</text>
  960. <text transform="matrix(1 0 0 1 581.5376 521.3408)" class="st7 st43">+</text>
  961. </g>
  962. <g>
  963. <text transform="matrix(1 0 0 1 561.5645 535.5908)" class="st7 st43">5-HT</text>
  964. <text transform="matrix(1 0 0 1 581.4536 535.5908)" class="st7 st43">- </text>
  965. </g>
  966. <g>
  967. <polygon class="st44" points="531,450.4 601.9,450.4 601.9,549.6 531,549.6 531,450.4 "/>
  968. <path class="st44" d="M566.4,500"/>
  969. </g>
  970. <g>
  971. <g>
  972. <polygon class="st45" points="545.1,491.5 545.1,482.9 553.6,482.9 553.6,491.5 545.1,491.5 "/>
  973. <path class="st45" d="M549.4,487.2"/>
  974. </g>
  975. <g>
  976. <polygon class="st46" points="545.1,491.5 545.1,482.9 553.6,482.9 553.6,491.5 545.1,491.5 "/>
  977. <path class="st46" d="M549.4,487.2"/>
  978. </g>
  979. </g>
  980. <g>
  981. <g>
  982. <polygon class="st47" points="545.1,466.9 545.1,458.3 553.6,458.3 553.6,466.9 545.1,466.9 "/>
  983. <path class="st47" d="M549.4,462.6"/>
  984. </g>
  985. <g>
  986. <polygon class="st48" points="545.1,466.9 545.1,458.3 553.6,458.3 553.6,466.9 545.1,466.9 "/>
  987. <path class="st48" d="M549.4,462.6"/>
  988. </g>
  989. </g>
  990. <polygon class="st49" points="544.7,515.3 549.1,515.3 550.5,511.1 551.9,515.4 556.2,515.4 552.7,517.9 554,522.2 550.5,519.7
  991. 547,522.2 548.2,518 "/>
  992. <line class="st50" x1="249.1" y1="627.8" x2="219.2" y2="494.6"/>
  993. <g>
  994. <text transform="matrix(1 0 0 1 212.2578 494.4282)" class="st7 st43">94 D</text>
  995. </g>
  996. <polygon class="st51" points="246.3,626.1 249.2,626.1 250.1,623.3 251,626.1 253.9,626.1 251.6,627.8 252.4,630.6 250.1,629
  997. 247.8,630.6 248.6,627.9 "/>
  998. <g>
  999. <text transform="matrix(1 0 0 1 213.4731 448.4917)" class="st7 st43">43 </text>
  1000. <text transform="matrix(1 0 0 1 224.208 448.4917)" class="st7 st43">A</text>
  1001. </g>
  1002. <line class="st50" x1="224.6" y1="390.9" x2="224.5" y2="444.5"/>
  1003. <g>
  1004. <text transform="matrix(1 0 0 1 246.7505 491.6519)" class="st7 st43">67 </text>
  1005. <text transform="matrix(1 0 0 1 257.4854 491.6519)" class="st7 st43">A</text>
  1006. </g>
  1007. <line class="st50" x1="254.4" y1="487.6" x2="256.7" y2="615"/>
  1008. <g>
  1009. <text transform="matrix(1 0 0 1 227.168 465.6528)" class="st7 st43">69 D</text>
  1010. </g>
  1011. <line class="st50" x1="230.8" y1="388.5" x2="233.3" y2="459.6"/>
  1012. <g>
  1013. <text transform="matrix(1 0 0 1 247.8735 759.5034)" class="st7 st43">82 D</text>
  1014. </g>
  1015. <line class="st50" x1="253.8" y1="636.2" x2="255.5" y2="755.1"/>
  1016. <g>
  1017. <text transform="matrix(1 0 0 1 236.2251 453.0371)" class="st7 st43">97 </text>
  1018. <text transform="matrix(1 0 0 1 246.96 453.0371)" class="st7 st43">A</text>
  1019. </g>
  1020. <line class="st50" x1="237.2" y1="381.6" x2="243.5" y2="447.5"/>
  1021. <line class="st50" x1="233.1" y1="673.3" x2="240" y2="640"/>
  1022. <g>
  1023. <text transform="matrix(1 0 0 1 274.9077 785.9707)" class="st7 st43">100 </text>
  1024. <text transform="matrix(1 0 0 1 290.0962 785.9707)" class="st7 st43">A</text>
  1025. </g>
  1026. <line class="st50" x1="286.9" y1="783" x2="265.9" y2="619.5"/>
  1027. <g>
  1028. <text transform="matrix(1 0 0 1 196.4536 259.4443)" class="st7 st43">107 </text>
  1029. <text transform="matrix(1 0 0 1 211.6426 259.4443)" class="st7 st43">A</text>
  1030. </g>
  1031. <line class="st50" x1="205.1" y1="258.2" x2="236.4" y2="372.2"/>
  1032. <line class="st50" x1="262" y1="626.9" x2="270.9" y2="731.7"/>
  1033. <g>
  1034. <text transform="matrix(1 0 0 1 260.8071 735.6982)" class="st7 st43">1</text>
  1035. <text transform="matrix(1 0 0 1 264.7329 735.6982)" class="st7 st43">12 </text>
  1036. <text transform="matrix(1 0 0 1 275.4678 735.6982)" class="st7 st43">A</text>
  1037. </g>
  1038. <g>
  1039. <text transform="matrix(1 0 0 1 182.6523 271.7168)" class="st7 st43">1</text>
  1040. <text transform="matrix(1 0 0 1 186.5786 271.7168)" class="st7 st43">18 H</text>
  1041. </g>
  1042. <line class="st50" x1="228.7" y1="376" x2="195.2" y2="281.1"/>
  1043. <g>
  1044. <text transform="matrix(1 0 0 1 264.0928 502.1567)" class="st7 st43">123 D</text>
  1045. </g>
  1046. <line class="st50" x1="269.4" y1="608" x2="275.6" y2="500.9"/>
  1047. <g>
  1048. <text transform="matrix(1 0 0 1 232.8203 505.6372)" class="st7 st43">134 </text>
  1049. <text transform="matrix(1 0 0 1 248.0088 505.6372)" class="st7 st43">A</text>
  1050. </g>
  1051. <line class="st50" x1="255" y1="605.3" x2="243.6" y2="503.6"/>
  1052. <g>
  1053. <polygon class="st52" points="223.3,373.6 226.1,373.6 227.1,370.8 228,373.6 230.8,373.6 228.5,375.3 229.4,378.1 227.1,376.4
  1054. 224.7,378.1 225.6,375.3 "/>
  1055. <polygon class="st53" points="223.3,373.6 226.1,373.6 227.1,370.8 228,373.6 230.8,373.6 228.5,375.3 229.4,378.1 227.1,376.4
  1056. 224.7,378.1 225.6,375.3 "/>
  1057. </g>
  1058. <g>
  1059. <polygon class="st52" points="231.8,372.2 234.6,372.2 235.6,369.4 236.5,372.2 239.3,372.2 237.1,373.9 237.9,376.7 235.6,375
  1060. 233.3,376.7 234.1,373.9 "/>
  1061. <polygon class="st53" points="231.8,372.2 234.6,372.2 235.6,369.4 236.5,372.2 239.3,372.2 237.1,373.9 237.9,376.7 235.6,375
  1062. 233.3,376.7 234.1,373.9 "/>
  1063. </g>
  1064. <g>
  1065. <polygon class="st52" points="220.5,388.1 223.3,388.1 224.3,385.3 225.2,388.1 228,388.1 225.7,389.8 226.6,392.6 224.3,390.9
  1066. 221.9,392.6 222.8,389.8 "/>
  1067. <polygon class="st53" points="220.5,388.1 223.3,388.1 224.3,385.3 225.2,388.1 228,388.1 225.7,389.8 226.6,392.6 224.3,390.9
  1068. 221.9,392.6 222.8,389.8 "/>
  1069. </g>
  1070. <g>
  1071. <polygon class="st52" points="234.2,379.9 237.1,379.9 238,377.1 238.9,379.9 241.8,379.9 239.5,381.6 240.3,384.4 238,382.8
  1072. 235.7,384.4 236.5,381.7 "/>
  1073. <polygon class="st53" points="234.2,379.9 237.1,379.9 238,377.1 238.9,379.9 241.8,379.9 239.5,381.6 240.3,384.4 238,382.8
  1074. 235.7,384.4 236.5,381.7 "/>
  1075. </g>
  1076. <g>
  1077. <polygon class="st52" points="227.1,386.3 229.9,386.3 230.9,383.5 231.8,386.3 234.6,386.3 232.3,388 233.2,390.8 230.9,389.1
  1078. 228.5,390.8 229.3,388 "/>
  1079. <polygon class="st53" points="227.1,386.3 229.9,386.3 230.9,383.5 231.8,386.3 234.6,386.3 232.3,388 233.2,390.8 230.9,389.1
  1080. 228.5,390.8 229.3,388 "/>
  1081. </g>
  1082. <g>
  1083. <polygon class="st52" points="235.9,638.7 238.8,638.7 239.7,635.9 240.6,638.8 243.5,638.8 241.2,640.5 242.1,643.3 239.7,641.6
  1084. 237.4,643.2 238.2,640.5 "/>
  1085. <polygon class="st53" points="235.9,638.7 238.8,638.7 239.7,635.9 240.6,638.8 243.5,638.8 241.2,640.5 242.1,643.3 239.7,641.6
  1086. 237.4,643.2 238.2,640.5 "/>
  1087. </g>
  1088. <g>
  1089. <polygon class="st52" points="264.3,607.6 267.1,607.6 268.1,604.8 269,607.6 271.8,607.6 269.6,609.3 270.4,612.1 268.1,610.4
  1090. 265.8,612.1 266.6,609.3 "/>
  1091. <polygon class="st53" points="264.3,607.6 267.1,607.6 268.1,604.8 269,607.6 271.8,607.6 269.6,609.3 270.4,612.1 268.1,610.4
  1092. 265.8,612.1 266.6,609.3 "/>
  1093. </g>
  1094. <g>
  1095. <polygon class="st52" points="261.3,616.6 264.1,616.6 265.1,613.8 266,616.6 268.8,616.6 266.6,618.3 267.4,621.1 265.1,619.4
  1096. 262.8,621.1 263.6,618.3 "/>
  1097. <polygon class="st53" points="261.3,616.6 264.1,616.6 265.1,613.8 266,616.6 268.8,616.6 266.6,618.3 267.4,621.1 265.1,619.4
  1098. 262.8,621.1 263.6,618.3 "/>
  1099. </g>
  1100. <g>
  1101. <polygon class="st52" points="251.3,604.6 254.1,604.6 255.1,601.8 256,604.6 258.8,604.6 256.6,606.3 257.4,609.1 255.1,607.4
  1102. 252.8,609.1 253.6,606.3 "/>
  1103. <polygon class="st53" points="251.3,604.6 254.1,604.6 255.1,601.8 256,604.6 258.8,604.6 256.6,606.3 257.4,609.1 255.1,607.4
  1104. 252.8,609.1 253.6,606.3 "/>
  1105. </g>
  1106. <g>
  1107. <polygon class="st52" points="252.8,614.1 255.6,614.1 256.6,611.3 257.5,614.1 260.3,614.1 258.1,615.8 258.9,618.6 256.6,616.9
  1108. 254.3,618.6 255.1,615.8 "/>
  1109. <polygon class="st53" points="252.8,614.1 255.6,614.1 256.6,611.3 257.5,614.1 260.3,614.1 258.1,615.8 258.9,618.6 256.6,616.9
  1110. 254.3,618.6 255.1,615.8 "/>
  1111. </g>
  1112. <g>
  1113. <polygon class="st52" points="250.1,635.7 253,635.7 253.9,632.9 254.8,635.7 257.7,635.7 255.4,637.4 256.3,640.2 253.9,638.5
  1114. 251.6,640.2 252.4,637.4 "/>
  1115. <polygon class="st53" points="250.1,635.7 253,635.7 253.9,632.9 254.8,635.7 257.7,635.7 255.4,637.4 256.3,640.2 253.9,638.5
  1116. 251.6,640.2 252.4,637.4 "/>
  1117. </g>
  1118. <g>
  1119. <polygon class="st52" points="255.8,624.1 258.6,624.1 259.6,621.3 260.5,624.1 263.3,624.1 261.1,625.8 261.9,628.6 259.6,626.9
  1120. 257.3,628.6 258.1,625.8 "/>
  1121. <polygon class="st53" points="255.8,624.1 258.6,624.1 259.6,621.3 260.5,624.1 263.3,624.1 261.1,625.8 261.9,628.6 259.6,626.9
  1122. 257.3,628.6 258.1,625.8 "/>
  1123. </g>
  1124. <g>
  1125. <text transform="matrix(1 0 0 1 222.2251 678.2783)" class="st7 st43">97 E</text>
  1126. </g>
  1127. <g>
  1128. <text transform="matrix(1 0 0 1 212.5137 223.6392)" class="st7 st43">49 </text>
  1129. <text transform="matrix(1 0 0 1 223.248 223.6392)" class="st7 st43">A</text>
  1130. </g>
  1131. <line class="st50" x1="241.6" y1="139.8" x2="221.9" y2="215.6"/>
  1132. <g>
  1133. <text transform="matrix(1 0 0 1 257.8706 229.0161)" class="st7 st43">101 </text>
  1134. <text transform="matrix(1 0 0 1 273.0591 229.0161)" class="st7 st43">A</text>
  1135. </g>
  1136. <line class="st50" x1="252.6" y1="149.3" x2="264" y2="222.9"/>
  1137. <g>
  1138. <polygon class="st52" points="248.7,147.5 251.5,147.5 252.5,144.7 253.4,147.6 256.2,147.6 253.9,149.3 254.8,152.1 252.5,150.4
  1139. 250.1,152.1 251,149.3 "/>
  1140. <polygon class="st53" points="248.7,147.5 251.5,147.5 252.5,144.7 253.4,147.6 256.2,147.6 253.9,149.3 254.8,152.1 252.5,150.4
  1141. 250.1,152.1 251,149.3 "/>
  1142. </g>
  1143. <g>
  1144. <polygon class="st52" points="237.7,137.5 240.6,137.5 241.5,134.7 242.4,137.5 245.3,137.5 243,139.2 243.9,142 241.5,140.3
  1145. 239.2,142 240,139.3 "/>
  1146. <polygon class="st53" points="237.7,137.5 240.6,137.5 241.5,134.7 242.4,137.5 245.3,137.5 243,139.2 243.9,142 241.5,140.3
  1147. 239.2,142 240,139.3 "/>
  1148. </g>
  1149. <g>
  1150. <text transform="matrix(1 0 0 1 265.1914 258.7002)" class="st7 st43">1</text>
  1151. <text transform="matrix(1 0 0 1 269.1177 258.7002)" class="st7 st43">19 D</text>
  1152. </g>
  1153. <line class="st50" x1="274.5" y1="258.6" x2="249.1" y2="362.9"/>
  1154. <g>
  1155. <polygon class="st54" points="246.1,359.5 249,359.5 249.9,356.7 250.8,359.5 253.7,359.5 251.4,361.2 252.2,364 249.9,362.3
  1156. 247.6,364 248.4,361.3 "/>
  1157. <polygon class="st55" points="246.1,359.5 249,359.5 249.9,356.7 250.8,359.5 253.7,359.5 251.4,361.2 252.2,364 249.9,362.3
  1158. 247.6,364 248.4,361.3 "/>
  1159. </g>
  1160. <g>
  1161. <text transform="matrix(1 0 0 1 179.7241 687.1953)" class="st7 st43">56 D</text>
  1162. </g>
  1163. <line class="st50" x1="230.1" y1="627.1" x2="188" y2="680.9"/>
  1164. <g>
  1165. <g>
  1166. <ellipse class="st45" cx="231.1" cy="626.1" rx="2.8" ry="2.8"/>
  1167. <path class="st45" d="M231.1,626.1"/>
  1168. </g>
  1169. <g>
  1170. <ellipse class="st56" cx="231.1" cy="626.1" rx="2.8" ry="2.8"/>
  1171. <path class="st56" d="M231.1,626.1"/>
  1172. </g>
  1173. </g>
  1174. <g>
  1175. <text transform="matrix(1 0 0 1 200.9648 517.9482)" class="st7 st43">65 E</text>
  1176. </g>
  1177. <line class="st50" x1="242" y1="626.6" x2="207.7" y2="516.2"/>
  1178. <g>
  1179. <text transform="matrix(1 0 0 1 244.1011 267.106)" class="st7 st43">90 G</text>
  1180. </g>
  1181. <line class="st50" x1="249" y1="269.4" x2="240.8" y2="361.2"/>
  1182. <g>
  1183. <g>
  1184. <ellipse class="st45" cx="242.7" cy="625.2" rx="2.8" ry="2.8"/>
  1185. <path class="st45" d="M242.7,625.2"/>
  1186. </g>
  1187. <g>
  1188. <ellipse class="st56" cx="242.7" cy="625.2" rx="2.8" ry="2.8"/>
  1189. <path class="st56" d="M242.7,625.2"/>
  1190. </g>
  1191. </g>
  1192. <g>
  1193. <g>
  1194. <ellipse class="st45" cx="241.1" cy="361.4" rx="2.8" ry="2.8"/>
  1195. <path class="st45" d="M241.1,361.4"/>
  1196. </g>
  1197. <g>
  1198. <ellipse class="st56" cx="241.1" cy="361.4" rx="2.8" ry="2.8"/>
  1199. <path class="st56" d="M241.1,361.4"/>
  1200. </g>
  1201. </g>
  1202. <g>
  1203. <text transform="matrix(1 0 0 1 248.2373 25.1335)" class="st7 st43">86 D *</text>
  1204. </g>
  1205. <line class="st50" x1="257.3" y1="28.4" x2="251.2" y2="129"/>
  1206. <g>
  1207. <g>
  1208. <ellipse class="st45" cx="252" cy="129.3" rx="2.8" ry="2.8"/>
  1209. <path class="st45" d="M252,129.3"/>
  1210. </g>
  1211. <g>
  1212. <ellipse class="st56" cx="252" cy="129.3" rx="2.8" ry="2.8"/>
  1213. <path class="st56" d="M252,129.3"/>
  1214. </g>
  1215. </g>
  1216. <g>
  1217. <text transform="matrix(1 0 0 1 179.1572 512.8081)" class="st7 st43">59 B</text>
  1218. </g>
  1219. <line class="st50" x1="236" y1="618.9" x2="185.1" y2="508.9"/>
  1220. <g>
  1221. <text transform="matrix(1 0 0 1 217.8364 272.8535)" class="st7 st43">66 B *</text>
  1222. </g>
  1223. <line class="st50" x1="237.6" y1="355.2" x2="224.6" y2="273.8"/>
  1224. <g>
  1225. <text transform="matrix(1 0 0 1 232.1196 721.8643)" class="st7 st43">67 C</text>
  1226. </g>
  1227. <line class="st50" x1="250.3" y1="635.4" x2="244.7" y2="718.4"/>
  1228. <g>
  1229. <text transform="matrix(1 0 0 1 226.8501 520.4219)" class="st7 st43">70 B</text>
  1230. </g>
  1231. <line class="st50" x1="247" y1="606.9" x2="233.8" y2="517.6"/>
  1232. <g>
  1233. <text transform="matrix(1 0 0 1 256.4858 445.8242)" class="st7 st43">78 D</text>
  1234. </g>
  1235. <line class="st50" x1="248.8" y1="375.3" x2="264.2" y2="440.9"/>
  1236. <g>
  1237. <text transform="matrix(1 0 0 1 257.7134 516.4956)" class="st7 st43">90 </text>
  1238. <text transform="matrix(1 0 0 1 268.4478 516.4956)" class="st7 st43">A</text>
  1239. </g>
  1240. <line class="st50" x1="268.1" y1="594.5" x2="262.4" y2="513.7"/>
  1241. <g>
  1242. <text transform="matrix(1 0 0 1 154.3467 730.5938)" class="st7 st43">94 C</text>
  1243. </g>
  1244. <line class="st50" x1="232.9" y1="636" x2="170.3" y2="724.4"/>
  1245. <g>
  1246. <text transform="matrix(1 0 0 1 248.4644 462.5254)" class="st7 st43">105 </text>
  1247. <text transform="matrix(1 0 0 1 263.6528 462.5254)" class="st7 st43">A</text>
  1248. </g>
  1249. <line class="st50" x1="236.4" y1="366.9" x2="255.7" y2="454.9"/>
  1250. <g>
  1251. <text transform="matrix(1 0 0 1 249.3057 275.0698)" class="st7 st43">1</text>
  1252. <text transform="matrix(1 0 0 1 253.2314 275.0698)" class="st7 st43">13 D</text>
  1253. </g>
  1254. <line class="st50" x1="244.7" y1="367.1" x2="257" y2="277"/>
  1255. <g>
  1256. <text transform="matrix(1 0 0 1 194.3398 700.4058)" class="st7 st43">92 H #</text>
  1257. </g>
  1258. <line class="st50" x1="238.7" y1="631" x2="208.7" y2="692.2"/>
  1259. <g>
  1260. <text transform="matrix(1 0 0 1 193.8687 446.0342)" class="st7 st43">99B</text>
  1261. </g>
  1262. <line class="st50" x1="218.9" y1="394.6" x2="201" y2="441.1"/>
  1263. <g>
  1264. <g>
  1265. <ellipse class="st47" cx="267.8" cy="594.2" rx="2.8" ry="2.8"/>
  1266. <path class="st47" d="M267.8,594.2"/>
  1267. </g>
  1268. <g>
  1269. <ellipse class="st57" cx="267.8" cy="594.2" rx="2.8" ry="2.8"/>
  1270. <path class="st57" d="M267.8,594.2"/>
  1271. </g>
  1272. </g>
  1273. <g>
  1274. <g>
  1275. <ellipse class="st47" cx="247.9" cy="607.7" rx="2.8" ry="2.8"/>
  1276. <path class="st47" d="M247.9,607.7"/>
  1277. </g>
  1278. <g>
  1279. <ellipse class="st57" cx="247.9" cy="607.7" rx="2.8" ry="2.8"/>
  1280. <path class="st57" d="M247.9,607.7"/>
  1281. </g>
  1282. </g>
  1283. <g>
  1284. <g>
  1285. <ellipse class="st47" cx="249.1" cy="633.6" rx="2.8" ry="2.8"/>
  1286. <path class="st47" d="M249.1,633.6"/>
  1287. </g>
  1288. <g>
  1289. <ellipse class="st57" cx="249.1" cy="633.6" rx="2.8" ry="2.8"/>
  1290. <path class="st57" d="M249.1,633.6"/>
  1291. </g>
  1292. </g>
  1293. <g>
  1294. <g>
  1295. <ellipse class="st47" cx="239" cy="630.7" rx="2.8" ry="2.8"/>
  1296. <path class="st47" d="M239,630.7"/>
  1297. </g>
  1298. <g>
  1299. <ellipse class="st57" cx="239" cy="630.7" rx="2.8" ry="2.8"/>
  1300. <path class="st57" d="M239,630.7"/>
  1301. </g>
  1302. </g>
  1303. <g>
  1304. <g>
  1305. <ellipse class="st47" cx="234.8" cy="619.7" rx="2.8" ry="2.8"/>
  1306. <path class="st47" d="M234.8,619.7"/>
  1307. </g>
  1308. <g>
  1309. <ellipse class="st57" cx="234.8" cy="619.7" rx="2.8" ry="2.8"/>
  1310. <path class="st57" d="M234.8,619.7"/>
  1311. </g>
  1312. </g>
  1313. <g>
  1314. <g>
  1315. <ellipse class="st47" cx="231.9" cy="634.7" rx="2.8" ry="2.8"/>
  1316. <path class="st47" d="M231.9,634.7"/>
  1317. </g>
  1318. <g>
  1319. <ellipse class="st57" cx="231.9" cy="634.7" rx="2.8" ry="2.8"/>
  1320. <path class="st57" d="M231.9,634.7"/>
  1321. </g>
  1322. </g>
  1323. <g>
  1324. <g>
  1325. <ellipse class="st47" cx="249" cy="374.7" rx="2.8" ry="2.8"/>
  1326. <path class="st47" d="M249,374.7"/>
  1327. </g>
  1328. <g>
  1329. <ellipse class="st57" cx="249" cy="374.7" rx="2.8" ry="2.8"/>
  1330. <path class="st57" d="M249,374.7"/>
  1331. </g>
  1332. </g>
  1333. <g>
  1334. <g>
  1335. <ellipse class="st47" cx="218.9" cy="394.8" rx="2.8" ry="2.8"/>
  1336. <path class="st47" d="M218.9,394.8"/>
  1337. </g>
  1338. <g>
  1339. <ellipse class="st57" cx="218.9" cy="394.8" rx="2.8" ry="2.8"/>
  1340. <path class="st57" d="M218.9,394.8"/>
  1341. </g>
  1342. </g>
  1343. <g>
  1344. <g>
  1345. <ellipse class="st47" cx="236.1" cy="365.9" rx="2.8" ry="2.8"/>
  1346. <path class="st47" d="M236.1,365.9"/>
  1347. </g>
  1348. <g>
  1349. <ellipse class="st57" cx="236.1" cy="365.9" rx="2.8" ry="2.8"/>
  1350. <path class="st57" d="M236.1,365.9"/>
  1351. </g>
  1352. </g>
  1353. <g>
  1354. <g>
  1355. <ellipse class="st47" cx="245.6" cy="366.6" rx="2.8" ry="2.8"/>
  1356. <path class="st47" d="M245.6,366.6"/>
  1357. </g>
  1358. <g>
  1359. <ellipse class="st57" cx="245.6" cy="366.6" rx="2.8" ry="2.8"/>
  1360. <path class="st57" d="M245.6,366.6"/>
  1361. </g>
  1362. </g>
  1363. <g>
  1364. <g>
  1365. <ellipse class="st47" cx="236.9" cy="354.4" rx="2.8" ry="2.8"/>
  1366. <path class="st47" d="M236.9,354.4"/>
  1367. </g>
  1368. <g>
  1369. <ellipse class="st57" cx="236.9" cy="354.4" rx="2.8" ry="2.8"/>
  1370. <path class="st57" d="M236.9,354.4"/>
  1371. </g>
  1372. </g>
  1373. <g>
  1374. <text transform="matrix(1 0 0 1 229.7471 212.3882)" class="st7 st43">32 </text>
  1375. <text transform="matrix(1 0 0 1 240.4814 212.3882)" class="st7 st43">A</text>
  1376. <text transform="matrix(1 0 0 1 247.6353 212.3882)" class="st7 st43">#</text>
  1377. </g>
  1378. <line class="st50" x1="242.4" y1="155.1" x2="240.6" y2="207.8"/>
  1379. <g>
  1380. <text transform="matrix(1 0 0 1 193.6768 45.9602)" class="st7 st43">50 </text>
  1381. <text transform="matrix(1 0 0 1 204.4116 45.9602)" class="st7 st43">A</text>
  1382. </g>
  1383. <line class="st50" x1="234.7" y1="129.3" x2="202.1" y2="45.8"/>
  1384. <g>
  1385. <text transform="matrix(1 0 0 1 219.3701 39.1809)" class="st7 st43">57 B</text>
  1386. </g>
  1387. <line class="st50" x1="242.5" y1="115.2" x2="226" y2="46.9"/>
  1388. <g>
  1389. <text transform="matrix(1 0 0 1 203.6255 29.2546)" class="st7 st43">60 B</text>
  1390. </g>
  1391. <line class="st50" x1="235.7" y1="120.9" x2="212.5" y2="30.9"/>
  1392. <g>
  1393. <text transform="matrix(1 0 0 1 239.7485 45.1838)" class="st7 st43">80 </text>
  1394. <text transform="matrix(1 0 0 1 250.4834 45.1838)" class="st7 st43">A</text>
  1395. </g>
  1396. <line class="st50" x1="251.2" y1="47.6" x2="245.8" y2="133.4"/>
  1397. <g>
  1398. <text transform="matrix(1 0 0 1 247.562 243.355)" class="st7 st43">86 E *</text>
  1399. </g>
  1400. <line class="st50" x1="255.8" y1="237" x2="248.6" y2="142.4"/>
  1401. <g>
  1402. <g>
  1403. <ellipse class="st47" cx="241.7" cy="154.3" rx="2.8" ry="2.8"/>
  1404. <path class="st47" d="M241.7,154.3"/>
  1405. </g>
  1406. <g>
  1407. <ellipse class="st57" cx="241.7" cy="154.3" rx="2.8" ry="2.8"/>
  1408. <path class="st57" d="M241.7,154.3"/>
  1409. </g>
  1410. </g>
  1411. <g>
  1412. <g>
  1413. <ellipse class="st47" cx="248.9" cy="142.7" rx="2.8" ry="2.8"/>
  1414. <path class="st47" d="M248.9,142.7"/>
  1415. </g>
  1416. <g>
  1417. <ellipse class="st57" cx="248.9" cy="142.7" rx="2.8" ry="2.8"/>
  1418. <path class="st57" d="M248.9,142.7"/>
  1419. </g>
  1420. </g>
  1421. <g>
  1422. <g>
  1423. <ellipse class="st47" cx="236.2" cy="128.6" rx="2.8" ry="2.8"/>
  1424. <path class="st47" d="M236.2,128.6"/>
  1425. </g>
  1426. <g>
  1427. <ellipse class="st57" cx="236.2" cy="128.6" rx="2.8" ry="2.8"/>
  1428. <path class="st57" d="M236.2,128.6"/>
  1429. </g>
  1430. </g>
  1431. <g>
  1432. <g>
  1433. <ellipse class="st47" cx="235.4" cy="120.6" rx="2.8" ry="2.8"/>
  1434. <path class="st47" d="M235.4,120.6"/>
  1435. </g>
  1436. <g>
  1437. <ellipse class="st57" cx="235.4" cy="120.6" rx="2.8" ry="2.8"/>
  1438. <path class="st57" d="M235.4,120.6"/>
  1439. </g>
  1440. </g>
  1441. <g>
  1442. <g>
  1443. <ellipse class="st47" cx="246.5" cy="132.9" rx="2.8" ry="2.8"/>
  1444. <path class="st47" d="M246.5,132.9"/>
  1445. </g>
  1446. <g>
  1447. <ellipse class="st57" cx="246.5" cy="132.9" rx="2.8" ry="2.8"/>
  1448. <path class="st57" d="M246.5,132.9"/>
  1449. </g>
  1450. </g>
  1451. <g>
  1452. <g>
  1453. <ellipse class="st47" cx="243.8" cy="114.6" rx="2.8" ry="2.8"/>
  1454. <path class="st47" d="M243.8,114.6"/>
  1455. </g>
  1456. <g>
  1457. <ellipse class="st57" cx="243.8" cy="114.6" rx="2.8" ry="2.8"/>
  1458. <path class="st57" d="M243.8,114.6"/>
  1459. </g>
  1460. </g>
  1461. <g>
  1462. <text transform="matrix(1 0 0 1 304.1323 463.2646)" class="st7 st43">1</text>
  1463. <text transform="matrix(1 0 0 1 308.0586 463.2646)" class="st7 st43">17 D</text>
  1464. </g>
  1465. <line class="st50" x1="278.3" y1="357" x2="314.4" y2="455.5"/>
  1466. <g>
  1467. <text transform="matrix(1 0 0 1 356.7773 447.6528)" class="st7 st43">1</text>
  1468. <text transform="matrix(1 0 0 1 360.7036 447.6528)" class="st7 st43">19 C</text>
  1469. </g>
  1470. <line class="st50" x1="366" y1="444.7" x2="296.3" y2="362.4"/>
  1471. <g>
  1472. <text transform="matrix(1 0 0 1 383.6138 695.564)" class="st7 st43">120 B</text>
  1473. </g>
  1474. <g>
  1475. <text transform="matrix(1 0 0 1 465.5571 579.6987)" class="st7 st43">120 C</text>
  1476. </g>
  1477. <line class="st50" x1="467.4" y1="577.4" x2="301" y2="605.6"/>
  1478. <line class="st50" x1="302" y1="619.2" x2="391.5" y2="691.1"/>
  1479. <g>
  1480. <text transform="matrix(1 0 0 1 441.8906 720.4951)" class="st7 st43">123 C</text>
  1481. </g>
  1482. <line class="st50" x1="446.9" y1="716.8" x2="300.1" y2="614.8"/>
  1483. <g>
  1484. <text transform="matrix(1 0 0 1 468.6069 567.4175)" class="st7 st43">123 B</text>
  1485. </g>
  1486. <line class="st50" x1="309.3" y1="599.5" x2="468.4" y2="565"/>
  1487. <g>
  1488. <text transform="matrix(1 0 0 1 327.2568 456.5254)" class="st7 st43">127 B</text>
  1489. </g>
  1490. <line class="st50" x1="287.4" y1="355.1" x2="334" y2="454.9"/>
  1491. <g>
  1492. <text transform="matrix(1 0 0 1 361.8491 757.4351)" class="st7 st43">133 C</text>
  1493. </g>
  1494. <line class="st50" x1="293.7" y1="611.9" x2="368" y2="754.8"/>
  1495. <g>
  1496. <text transform="matrix(1 0 0 1 466.834 596.6953)" class="st7 st43">135 B</text>
  1497. </g>
  1498. <line class="st50" x1="467.6" y1="593.7" x2="312.8" y2="607"/>
  1499. <line class="st50" x1="469.8" y1="609.2" x2="315.2" y2="616.3"/>
  1500. <g>
  1501. <text transform="matrix(1 0 0 1 473.0498 611.4795)" class="st7 st43">139 B</text>
  1502. </g>
  1503. <g>
  1504. <text transform="matrix(1 0 0 1 416.1978 695.6377)" class="st7 st43">131 </text>
  1505. <text transform="matrix(1 0 0 1 431.3862 695.6377)" class="st7 st43">A</text>
  1506. </g>
  1507. <line class="st50" x1="307.5" y1="614.6" x2="422.4" y2="692.8"/>
  1508. <g>
  1509. <polygon class="st52" points="312.4,597.5 309.6,597.5 308.6,594.7 307.7,597.6 304.9,597.5 307.2,599.2 306.3,602.1 308.6,600.4
  1510. 311,602 310.1,599.3 "/>
  1511. <polygon class="st53" points="312.4,597.5 309.6,597.5 308.6,594.7 307.7,597.6 304.9,597.5 307.2,599.2 306.3,602.1 308.6,600.4
  1512. 311,602 310.1,599.3 "/>
  1513. </g>
  1514. <g>
  1515. <polygon class="st52" points="311.3,612.3 308.5,612.3 307.5,609.4 306.6,612.3 303.8,612.3 306.1,614 305.2,616.8 307.5,615.1
  1516. 309.9,616.8 309,614 "/>
  1517. <polygon class="st53" points="311.3,612.3 308.5,612.3 307.5,609.4 306.6,612.3 303.8,612.3 306.1,614 305.2,616.8 307.5,615.1
  1518. 309.9,616.8 309,614 "/>
  1519. </g>
  1520. <g>
  1521. <polygon class="st52" points="304.8,603.4 302,603.4 301,600.6 300.1,603.4 297.3,603.4 299.6,605.1 298.7,607.9 301,606.3
  1522. 303.4,607.9 302.5,605.2 "/>
  1523. <polygon class="st53" points="304.8,603.4 302,603.4 301,600.6 300.1,603.4 297.3,603.4 299.6,605.1 298.7,607.9 301,606.3
  1524. 303.4,607.9 302.5,605.2 "/>
  1525. </g>
  1526. <g>
  1527. <polygon class="st52" points="307.1,620.1 304.2,620.1 303.3,617.3 302.4,620.2 299.5,620.2 301.8,621.9 300.9,624.7 303.3,623
  1528. 305.6,624.6 304.8,621.9 "/>
  1529. <polygon class="st53" points="307.1,620.1 304.2,620.1 303.3,617.3 302.4,620.2 299.5,620.2 301.8,621.9 300.9,624.7 303.3,623
  1530. 305.6,624.6 304.8,621.9 "/>
  1531. </g>
  1532. <g>
  1533. <polygon class="st52" points="319.1,614.5 316.3,614.5 315.3,611.7 314.4,614.5 311.6,614.5 313.9,616.2 313,619 315.3,617.3
  1534. 317.6,619 316.8,616.2 "/>
  1535. <polygon class="st53" points="319.1,614.5 316.3,614.5 315.3,611.7 314.4,614.5 311.6,614.5 313.9,616.2 313,619 315.3,617.3
  1536. 317.6,619 316.8,616.2 "/>
  1537. </g>
  1538. <g>
  1539. <polygon class="st52" points="317.2,605.5 314.4,605.5 313.4,602.7 312.5,605.5 309.7,605.5 312,607.2 311.1,610 313.4,608.3
  1540. 315.8,610 314.9,607.2 "/>
  1541. <polygon class="st53" points="317.2,605.5 314.4,605.5 313.4,602.7 312.5,605.5 309.7,605.5 312,607.2 311.1,610 313.4,608.3
  1542. 315.8,610 314.9,607.2 "/>
  1543. </g>
  1544. <g>
  1545. <polygon class="st52" points="303.7,613.6 300.8,613.6 299.9,610.8 299,613.6 296.1,613.6 298.4,615.3 297.5,618.1 299.9,616.4
  1546. 302.2,618.1 301.4,615.3 "/>
  1547. <polygon class="st53" points="303.7,613.6 300.8,613.6 299.9,610.8 299,613.6 296.1,613.6 298.4,615.3 297.5,618.1 299.9,616.4
  1548. 302.2,618.1 301.4,615.3 "/>
  1549. </g>
  1550. <g>
  1551. <polygon class="st52" points="296.8,609.3 293.9,609.3 293,606.5 292.1,609.4 289.2,609.3 291.5,611 290.7,613.9 293,612.2
  1552. 295.3,613.8 294.5,611.1 "/>
  1553. <polygon class="st53" points="296.8,609.3 293.9,609.3 293,606.5 292.1,609.4 289.2,609.3 291.5,611 290.7,613.9 293,612.2
  1554. 295.3,613.8 294.5,611.1 "/>
  1555. </g>
  1556. <g>
  1557. <polygon class="st52" points="290.6,353.6 287.8,353.6 286.8,350.8 285.9,353.6 283.1,353.6 285.3,355.3 284.5,358.1 286.8,356.5
  1558. 289.1,358.1 288.3,355.4 "/>
  1559. <polygon class="st53" points="290.6,353.6 287.8,353.6 286.8,350.8 285.9,353.6 283.1,353.6 285.3,355.3 284.5,358.1 286.8,356.5
  1560. 289.1,358.1 288.3,355.4 "/>
  1561. </g>
  1562. <g>
  1563. <polygon class="st52" points="282.3,355.2 279.5,355.2 278.5,352.4 277.6,355.3 274.8,355.3 277.1,357 276.2,359.8 278.5,358.1
  1564. 280.9,359.7 280.1,357 "/>
  1565. <polygon class="st53" points="282.3,355.2 279.5,355.2 278.5,352.4 277.6,355.3 274.8,355.3 277.1,357 276.2,359.8 278.5,358.1
  1566. 280.9,359.7 280.1,357 "/>
  1567. </g>
  1568. <g>
  1569. <polygon class="st52" points="300.4,359.7 297.5,359.7 296.6,356.9 295.7,359.8 292.8,359.8 295.1,361.5 294.2,364.3 296.6,362.6
  1570. 298.9,364.2 298.1,361.5 "/>
  1571. <polygon class="st53" points="300.4,359.7 297.5,359.7 296.6,356.9 295.7,359.8 292.8,359.8 295.1,361.5 294.2,364.3 296.6,362.6
  1572. 298.9,364.2 298.1,361.5 "/>
  1573. </g>
  1574. <line class="st50" x1="297" y1="129.7" x2="394" y2="208.2"/>
  1575. <g>
  1576. <text transform="matrix(1 0 0 1 383.3755 217.0215)" class="st7 st43">128 C</text>
  1577. </g>
  1578. <g>
  1579. <text transform="matrix(1 0 0 1 273.3218 32.3298)" class="st7 st43">136 </text>
  1580. <text transform="matrix(1 0 0 1 288.5107 32.3298)" class="st7 st43">A</text>
  1581. </g>
  1582. <line class="st50" x1="281.7" y1="35.3" x2="280.8" y2="136.2"/>
  1583. <g>
  1584. <polygon class="st52" points="292.2,128.3 295.1,128.3 296,125.4 296.9,128.3 299.8,128.3 297.5,130 298.3,132.8 296,131.1
  1585. 293.7,132.8 294.5,130 "/>
  1586. <polygon class="st53" points="292.2,128.3 295.1,128.3 296,125.4 296.9,128.3 299.8,128.3 297.5,130 298.3,132.8 296,131.1
  1587. 293.7,132.8 294.5,130 "/>
  1588. </g>
  1589. <g>
  1590. <polygon class="st52" points="277,135.1 279.8,135.1 280.8,132.3 281.7,135.2 284.5,135.2 282.2,136.9 283.1,139.7 280.8,138
  1591. 278.4,139.6 279.3,136.9 "/>
  1592. <polygon class="st53" points="277,135.1 279.8,135.1 280.8,132.3 281.7,135.2 284.5,135.2 282.2,136.9 283.1,139.7 280.8,138
  1593. 278.4,139.6 279.3,136.9 "/>
  1594. </g>
  1595. <g>
  1596. <text transform="matrix(1 0 0 1 367.022 511.7632)" class="st7 st43">138 </text>
  1597. <text transform="matrix(1 0 0 1 382.2104 511.7632)" class="st7 st43">A</text>
  1598. </g>
  1599. <line class="st50" x1="310.1" y1="586.2" x2="371.1" y2="514.8"/>
  1600. <polygon class="st51" points="306.3,586.5 309.2,586.5 310.1,583.7 311,586.6 313.9,586.6 311.6,588.3 312.4,591.1 310.1,589.4
  1601. 307.8,591 308.6,588.3 "/>
  1602. <g>
  1603. <text transform="matrix(1 0 0 1 471.1694 162.6882)" class="st7 st43">1</text>
  1604. <text transform="matrix(1 0 0 1 475.0957 162.6882)" class="st7 st43">15 </text>
  1605. <text transform="matrix(1 0 0 1 485.8301 162.6882)" class="st7 st43">A</text>
  1606. </g>
  1607. <line class="st50" x1="297.1" y1="121.3" x2="471.1" y2="160.5"/>
  1608. <polygon class="st51" points="292.4,118.8 295.3,118.8 296.2,116 297.1,118.9 300,118.9 297.7,120.6 298.5,123.4 296.2,121.7
  1609. 293.9,123.3 294.7,120.6 "/>
  1610. <g>
  1611. <text transform="matrix(1 0 0 1 334.3257 743.4204)" class="st7 st43">1</text>
  1612. <text transform="matrix(1 0 0 1 338.252 743.4204)" class="st7 st43">10 H</text>
  1613. </g>
  1614. <line class="st50" x1="295.7" y1="624.8" x2="346.5" y2="736.1"/>
  1615. <g>
  1616. <text transform="matrix(1 0 0 1 359.6909 264.709)" class="st7 st43">124 B</text>
  1617. </g>
  1618. <line class="st50" x1="292.9" y1="343.5" x2="367.6" y2="267.2"/>
  1619. <line class="st50" x1="288.9" y1="617.7" x2="347.1" y2="793.7"/>
  1620. <g>
  1621. <polygon class="st54" points="289.7,342.6 292.6,342.6 293.5,339.8 294.4,342.6 297.3,342.6 295,344.3 295.9,347.1 293.5,345.5
  1622. 291.2,347.1 292,344.4 "/>
  1623. <polygon class="st55" points="289.7,342.6 292.6,342.6 293.5,339.8 294.4,342.6 297.3,342.6 295,344.3 295.9,347.1 293.5,345.5
  1624. 291.2,347.1 292,344.4 "/>
  1625. </g>
  1626. <g>
  1627. <polygon class="st54" points="291.6,623.4 294.4,623.4 295.4,620.6 296.3,623.5 299.1,623.5 296.9,625.2 297.7,628 295.4,626.3
  1628. 293.1,627.9 293.9,625.2 "/>
  1629. <polygon class="st55" points="291.6,623.4 294.4,623.4 295.4,620.6 296.3,623.5 299.1,623.5 296.9,625.2 297.7,628 295.4,626.3
  1630. 293.1,627.9 293.9,625.2 "/>
  1631. </g>
  1632. <g>
  1633. <polygon class="st54" points="285.5,616.2 288.3,616.2 289.3,613.4 290.2,616.2 293,616.2 290.7,617.9 291.6,620.7 289.3,619
  1634. 286.9,620.7 287.7,617.9 "/>
  1635. <polygon class="st55" points="285.5,616.2 288.3,616.2 289.3,613.4 290.2,616.2 293,616.2 290.7,617.9 291.6,620.7 289.3,619
  1636. 286.9,620.7 287.7,617.9 "/>
  1637. </g>
  1638. <g>
  1639. <text transform="matrix(1 0 0 1 325.4136 41.228)" class="st7 st43">128 D</text>
  1640. </g>
  1641. <line class="st50" x1="284.4" y1="122.7" x2="332.4" y2="43.7"/>
  1642. <g>
  1643. <text transform="matrix(1 0 0 1 303.3628 223.0581)" class="st7 st43">140 </text>
  1644. <text transform="matrix(1 0 0 1 318.5513 223.0581)" class="st7 st43">A</text>
  1645. </g>
  1646. <line class="st50" x1="311.9" y1="219.6" x2="288.7" y2="141.1"/>
  1647. <g>
  1648. <text transform="matrix(1 0 0 1 338.0527 208.2021)" class="st7 st43">131 B</text>
  1649. </g>
  1650. <line class="st50" x1="350.6" y1="204" x2="287.3" y2="130.8"/>
  1651. <g>
  1652. <polygon class="st54" points="280.2,119.1 283,119.1 284,116.3 284.9,119.2 287.7,119.2 285.5,120.9 286.3,123.7 284,122
  1653. 281.7,123.6 282.5,120.9 "/>
  1654. <polygon class="st55" points="280.2,119.1 283,119.1 284,116.3 284.9,119.2 287.7,119.2 285.5,120.9 286.3,123.7 284,122
  1655. 281.7,123.6 282.5,120.9 "/>
  1656. </g>
  1657. <g>
  1658. <polygon class="st54" points="282.4,128 285.2,128 286.2,125.2 287.1,128 289.9,128 287.6,129.7 288.5,132.5 286.2,130.8
  1659. 283.8,132.5 284.7,129.8 "/>
  1660. <polygon class="st55" points="282.4,128 285.2,128 286.2,125.2 287.1,128 289.9,128 287.6,129.7 288.5,132.5 286.2,130.8
  1661. 283.8,132.5 284.7,129.8 "/>
  1662. </g>
  1663. <g>
  1664. <polygon class="st54" points="284.7,139.1 287.5,139.1 288.5,136.3 289.4,139.2 292.2,139.2 289.9,140.9 290.8,143.7 288.5,142
  1665. 286.1,143.6 287,140.9 "/>
  1666. <polygon class="st55" points="284.7,139.1 287.5,139.1 288.5,136.3 289.4,139.2 292.2,139.2 289.9,140.9 290.8,143.7 288.5,142
  1667. 286.1,143.6 287,140.9 "/>
  1668. </g>
  1669. <g>
  1670. <text transform="matrix(1 0 0 1 296.4912 517.4644)" class="st7 st43">90 J</text>
  1671. </g>
  1672. <line class="st50" x1="300.4" y1="514.9" x2="292.2" y2="594.3"/>
  1673. <g>
  1674. <text transform="matrix(1 0 0 1 278.1724 486.3159)" class="st7 st43">100 B</text>
  1675. </g>
  1676. <line class="st50" x1="286.4" y1="483.5" x2="281.2" y2="603.2"/>
  1677. <g>
  1678. <text transform="matrix(1 0 0 1 321.8911 504.77)" class="st7 st43">126 </text>
  1679. <text transform="matrix(1 0 0 1 337.0796 504.77)" class="st7 st43">A</text>
  1680. </g>
  1681. <line class="st50" x1="304.7" y1="579.7" x2="325.3" y2="503.5"/>
  1682. <g>
  1683. <text transform="matrix(1 0 0 1 328.478 273.0269)" class="st7 st43">83 E #</text>
  1684. </g>
  1685. <line class="st50" x1="286" y1="342.8" x2="338.9" y2="273.5"/>
  1686. <g>
  1687. <text transform="matrix(1 0 0 1 288.8765 495.0234)" class="st7 st43">93 E #</text>
  1688. </g>
  1689. <line class="st50" x1="293.9" y1="492.5" x2="290.9" y2="603"/>
  1690. <g>
  1691. <g>
  1692. <ellipse class="st45" cx="304.4" cy="580.8" rx="2.8" ry="2.8"/>
  1693. <path class="st45" d="M304.4,580.8"/>
  1694. </g>
  1695. <g>
  1696. <ellipse class="st56" cx="304.4" cy="580.8" rx="2.8" ry="2.8"/>
  1697. <path class="st56" d="M304.4,580.8"/>
  1698. </g>
  1699. </g>
  1700. <g>
  1701. <g>
  1702. <ellipse class="st45" cx="281" cy="602.1" rx="2.8" ry="2.8"/>
  1703. <path class="st45" d="M281,602.1"/>
  1704. </g>
  1705. <g>
  1706. <ellipse class="st56" cx="281" cy="602.1" rx="2.8" ry="2.8"/>
  1707. <path class="st56" d="M281,602.1"/>
  1708. </g>
  1709. </g>
  1710. <g>
  1711. <g>
  1712. <ellipse class="st45" cx="290.4" cy="603.2" rx="2.8" ry="2.8"/>
  1713. <path class="st45" d="M290.4,603.2"/>
  1714. </g>
  1715. <g>
  1716. <ellipse class="st56" cx="290.4" cy="603.2" rx="2.8" ry="2.8"/>
  1717. <path class="st56" d="M290.4,603.2"/>
  1718. </g>
  1719. </g>
  1720. <g>
  1721. <g>
  1722. <ellipse class="st45" cx="290.9" cy="594.7" rx="2.8" ry="2.8"/>
  1723. <path class="st45" d="M290.9,594.7"/>
  1724. </g>
  1725. <g>
  1726. <ellipse class="st56" cx="290.9" cy="594.7" rx="2.8" ry="2.8"/>
  1727. <path class="st56" d="M290.9,594.7"/>
  1728. </g>
  1729. </g>
  1730. <g>
  1731. <g>
  1732. <ellipse class="st45" cx="286" cy="342.2" rx="2.8" ry="2.8"/>
  1733. <path class="st45" d="M286,342.2"/>
  1734. </g>
  1735. <g>
  1736. <ellipse class="st56" cx="286" cy="342.2" rx="2.8" ry="2.8"/>
  1737. <path class="st56" d="M286,342.2"/>
  1738. </g>
  1739. </g>
  1740. <g>
  1741. <text transform="matrix(1 0 0 1 267.1387 212.856)" class="st7 st43">81 B</text>
  1742. </g>
  1743. <line class="st50" x1="273.3" y1="208.3" x2="268.4" y2="149.4"/>
  1744. <g>
  1745. <g>
  1746. <ellipse class="st45" cx="268.3" cy="148.8" rx="2.8" ry="2.8"/>
  1747. <path class="st45" d="M268.3,148.8"/>
  1748. </g>
  1749. <g>
  1750. <ellipse class="st56" cx="268.3" cy="148.8" rx="2.8" ry="2.8"/>
  1751. <path class="st56" d="M268.3,148.8"/>
  1752. </g>
  1753. </g>
  1754. <g>
  1755. <text transform="matrix(1 0 0 1 285.3735 429.0815)" class="st47 st7 st43">59 G</text>
  1756. </g>
  1757. <line class="st50" x1="291.5" y1="424.9" x2="275.5" y2="364.8"/>
  1758. <g>
  1759. <text transform="matrix(1 0 0 1 290.0151 699.854)" class="st7 st43">69 G</text>
  1760. </g>
  1761. <line class="st50" x1="283.6" y1="609.7" x2="297.7" y2="697.2"/>
  1762. <g>
  1763. <text transform="matrix(1 0 0 1 279.2471 276.3809)" class="st7 st43">84 C</text>
  1764. </g>
  1765. <line class="st50" x1="286.6" y1="277.8" x2="264.9" y2="359.9"/>
  1766. <g>
  1767. <text transform="matrix(1 0 0 1 283.5659 450.645)" class="st7 st43">90 E</text>
  1768. </g>
  1769. <line class="st50" x1="288.2" y1="445.8" x2="268.4" y2="380.2"/>
  1770. <g>
  1771. <text transform="matrix(1 0 0 1 283.1958 246.4336)" class="st7 st43">95 C *</text>
  1772. </g>
  1773. <g>
  1774. <text transform="matrix(1 0 0 1 274.3242 460.4912)" class="st7 st43">96 D *</text>
  1775. </g>
  1776. <line class="st50" x1="281.3" y1="455.5" x2="261.8" y2="379.6"/>
  1777. <g>
  1778. <text transform="matrix(1 0 0 1 286.9907 750.9639)" class="st7 st43">98 D *</text>
  1779. </g>
  1780. <line class="st50" x1="295.3" y1="744.1" x2="277.3" y2="626.8"/>
  1781. <g>
  1782. <text transform="matrix(1 0 0 1 380.3276 275.1865)" class="st7 st43">1</text>
  1783. <text transform="matrix(1 0 0 1 384.2539 275.1865)" class="st7 st43">18 C</text>
  1784. </g>
  1785. <line class="st50" x1="304.1" y1="344.7" x2="387.5" y2="276.2"/>
  1786. <g>
  1787. <text transform="matrix(1 0 0 1 417.7915 518.1167)" class="st7 st43">130 B</text>
  1788. </g>
  1789. <line class="st50" x1="298.4" y1="597.4" x2="425.7" y2="519.5"/>
  1790. <g>
  1791. <text transform="matrix(1 0 0 1 328.9507 520.521)" class="st7 st43">132 </text>
  1792. <text transform="matrix(1 0 0 1 344.1392 520.521)" class="st7 st43">A</text>
  1793. </g>
  1794. <line class="st50" x1="304.5" y1="589.9" x2="337.1" y2="519.5"/>
  1795. <g>
  1796. <text transform="matrix(1 0 0 1 301.8418 265.3052)" class="st7 st43">86 C #</text>
  1797. </g>
  1798. <line class="st50" x1="271.7" y1="357.3" x2="311.7" y2="265.5"/>
  1799. <g>
  1800. <text transform="matrix(1 0 0 1 313.0796 496.7222)" class="st7 st43">99C #</text>
  1801. </g>
  1802. <line class="st50" x1="316.7" y1="497.2" x2="296.5" y2="590.8"/>
  1803. <g>
  1804. <g>
  1805. <ellipse class="st47" cx="304.2" cy="590.4" rx="2.8" ry="2.8"/>
  1806. <path class="st47" d="M304.2,590.4"/>
  1807. </g>
  1808. <g>
  1809. <ellipse class="st57" cx="304.2" cy="590.4" rx="2.8" ry="2.8"/>
  1810. <path class="st57" d="M304.2,590.4"/>
  1811. </g>
  1812. </g>
  1813. <g>
  1814. <g>
  1815. <ellipse class="st47" cx="296.4" cy="590.8" rx="2.8" ry="2.8"/>
  1816. <path class="st47" d="M296.4,590.8"/>
  1817. </g>
  1818. <g>
  1819. <ellipse class="st57" cx="296.4" cy="590.8" rx="2.8" ry="2.8"/>
  1820. <path class="st57" d="M296.4,590.8"/>
  1821. </g>
  1822. </g>
  1823. <g>
  1824. <g>
  1825. <ellipse class="st47" cx="277" cy="625" rx="2.8" ry="2.8"/>
  1826. <path class="st47" d="M277,625"/>
  1827. </g>
  1828. <g>
  1829. <ellipse class="st57" cx="277" cy="625" rx="2.8" ry="2.8"/>
  1830. <path class="st57" d="M277,625"/>
  1831. </g>
  1832. </g>
  1833. <g>
  1834. <g>
  1835. <ellipse class="st47" cx="297.8" cy="596.9" rx="2.8" ry="2.8"/>
  1836. <path class="st47" d="M297.8,596.9"/>
  1837. </g>
  1838. <g>
  1839. <ellipse class="st57" cx="297.8" cy="596.9" rx="2.8" ry="2.8"/>
  1840. <path class="st57" d="M297.8,596.9"/>
  1841. </g>
  1842. </g>
  1843. <g>
  1844. <g>
  1845. <ellipse class="st47" cx="283.8" cy="607.3" rx="2.8" ry="2.8"/>
  1846. <path class="st47" d="M283.8,607.3"/>
  1847. </g>
  1848. <g>
  1849. <ellipse class="st57" cx="283.8" cy="607.3" rx="2.8" ry="2.8"/>
  1850. <path class="st57" d="M283.8,607.3"/>
  1851. </g>
  1852. </g>
  1853. <g>
  1854. <g>
  1855. <ellipse class="st47" cx="303" cy="345.2" rx="2.8" ry="2.8"/>
  1856. <path class="st47" d="M303,345.2"/>
  1857. </g>
  1858. <g>
  1859. <ellipse class="st57" cx="303" cy="345.2" rx="2.8" ry="2.8"/>
  1860. <path class="st57" d="M303,345.2"/>
  1861. </g>
  1862. </g>
  1863. <g>
  1864. <g>
  1865. <ellipse class="st47" cx="271.5" cy="357.5" rx="2.8" ry="2.8"/>
  1866. <path class="st47" d="M271.5,357.5"/>
  1867. </g>
  1868. <g>
  1869. <ellipse class="st57" cx="271.5" cy="357.5" rx="2.8" ry="2.8"/>
  1870. <path class="st57" d="M271.5,357.5"/>
  1871. </g>
  1872. </g>
  1873. <g>
  1874. <g>
  1875. <ellipse class="st47" cx="264.3" cy="359.7" rx="2.8" ry="2.8"/>
  1876. <path class="st47" d="M264.3,359.7"/>
  1877. </g>
  1878. <g>
  1879. <ellipse class="st57" cx="264.3" cy="359.7" rx="2.8" ry="2.8"/>
  1880. <path class="st57" d="M264.3,359.7"/>
  1881. </g>
  1882. </g>
  1883. <g>
  1884. <g>
  1885. <ellipse class="st47" cx="267.7" cy="378.6" rx="2.8" ry="2.8"/>
  1886. <path class="st47" d="M267.7,378.6"/>
  1887. </g>
  1888. <g>
  1889. <ellipse class="st57" cx="267.7" cy="378.6" rx="2.8" ry="2.8"/>
  1890. <path class="st57" d="M267.7,378.6"/>
  1891. </g>
  1892. </g>
  1893. <g>
  1894. <g>
  1895. <ellipse class="st47" cx="260.8" cy="379.1" rx="2.8" ry="2.8"/>
  1896. <path class="st47" d="M260.8,379.1"/>
  1897. </g>
  1898. <g>
  1899. <ellipse class="st57" cx="260.8" cy="379.1" rx="2.8" ry="2.8"/>
  1900. <path class="st57" d="M260.8,379.1"/>
  1901. </g>
  1902. </g>
  1903. <g>
  1904. <g>
  1905. <ellipse class="st47" cx="275.6" cy="363" rx="2.8" ry="2.8"/>
  1906. <path class="st47" d="M275.6,363"/>
  1907. </g>
  1908. <g>
  1909. <ellipse class="st57" cx="275.6" cy="363" rx="2.8" ry="2.8"/>
  1910. <path class="st57" d="M275.6,363"/>
  1911. </g>
  1912. </g>
  1913. <line class="st50" x1="290.4" y1="243.3" x2="279.4" y2="148"/>
  1914. <g>
  1915. <text transform="matrix(1 0 0 1 285.8315 202.894)" class="st7 st43">122 F</text>
  1916. </g>
  1917. <line class="st50" x1="292.4" y1="196.4" x2="286.6" y2="150.7"/>
  1918. <g>
  1919. <g>
  1920. <ellipse class="st47" cx="286.7" cy="149.5" rx="2.8" ry="2.8"/>
  1921. <path class="st47" d="M286.7,149.5"/>
  1922. </g>
  1923. <g>
  1924. <ellipse class="st57" cx="286.7" cy="149.5" rx="2.8" ry="2.8"/>
  1925. <path class="st57" d="M286.7,149.5"/>
  1926. </g>
  1927. </g>
  1928. <g>
  1929. <g>
  1930. <ellipse class="st47" cx="280.1" cy="147.2" rx="2.8" ry="2.8"/>
  1931. <path class="st47" d="M280.1,147.2"/>
  1932. </g>
  1933. <g>
  1934. <ellipse class="st57" cx="280.1" cy="147.2" rx="2.8" ry="2.8"/>
  1935. <path class="st57" d="M280.1,147.2"/>
  1936. </g>
  1937. </g>
  1938. </svg>